new project installation in laravel

PHP
composer create-project laravel/laravel example-app

cd example-app

php artisan serveYou 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// To install and use a specific version, you can enter it at the end of the command.
// For example using version 5.8 ==>
composer create-project --prefer-dist laravel/laravel projectName "5.8.*"
Source

Also in PHP: