set up laravel project code example
Example 1: how to create the new laravel project
composer create-project --prefer-dist laravel/laravel blog
Example 2: laravel installation from github
//Laravel installation from github
php -r "file_exists('.env') || copy('.env.example', '.env');"
composer install -q --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist
php artisan key:generate