How to install specific laravel version
3 months ago by Tamas
The Laravel development is extremely rapid. new major versions are released every six months, sometimes with huge and breaking changes. So ocassionally it may not be the best idea to install the latest version of Laravel. Luckily, we can easily install a specific Laravel version using composer.
Make sure to download the Laravel installer first:
composer global require laravel/installer
Then install the version you want using the following command:
composer create-project laravel/laravel="7.2.*" ProjectName
LEAVE A REPLY
Your email address will not be published. Required fields are marked *