Installing specific version of Laravel with Composer

2024-04-27 05:55:15 Vikas Laravel

How to Install specific version of Laravel.

To install specific version of Laravel please run below command on your terminal

composer create-project laravel/laravel=version-to-install your-project-name --prefer-dist

Note : Change version-to-install to the version you want to install and your-project-name to name of your project.

Example:

composer create-project laravel/laravel=5.5.11 my-music-blog --prefer-dist


This post is submitted by one of our members. You may submit a new post here.

Related Tricks