Home > Article > Backend Development > Detailed explanation of Laravel5.2 installation and directory structure
Here you choose to install the Laravel application through Composer's create-project command.
composer create-project laravel/laravel blog --prefer-dist
This will create the blog directory under the current directory and load the Laravel framework. The --prefer-dist option indicates that the compressed package should be installed first.
The above is the detailed content of Detailed explanation of Laravel5.2 installation and directory structure. For more information, please follow other related articles on the PHP Chinese website!