- Forums
- laravel
- Laravel Command To Create A New Project With Php Composer
this is the command you need to use to create a new laravel project. [4608], Last Updated: Mon Jun 24, 2024
el_lara
Wed Oct 26, 2016
0 Comments
428 Visits
to create a new laravel project you only need this command
composer create-project laravel/laravel ProjectName
if you need to specify the laravel version, then you can do this command instead
composer create-project "5.1.*" laravel/laravel ProjectName
TIP: i would recommend you do not use hyphens ( - ) or underscore( _ ) to name your projects