Command used to install Laravel Project code example
Example 1: how to install new project in laravel
You can create project by 2 ways:
First is installing it without defining version:
composer create-project laravel/laravel yourProjectName
Secondly you can install by defining version:
composer create-project laravel/laravel="VersionOfYourChoice" yourProjectName
Example 2: how to install laravel
composer global require "laravel/installer=~1.1"