How to install Old version laravel using composer

Today we will learn how to install old version Laravel using Composer for project that may require older version of laravel. Also sometime you have PHP older version < 8 then latest laravel version 9 not supported for php older version. Then this method is very useful.

Installation of old version of Laravel is straight forward and we can use directly composer create-project command to generate it.

Method 1 : Composer create-project

To install the old version of Laravel, the easiest way is to use the composer create-project command. Using this command we have to specify the only project name and Laravel version that we want it to be installed.

composer create-project laravel/laravel project-name 8.0.*

There is another method which is little complicated but you can also that method also.

Method 2 : Global Laravel Installer

If you don’t want to use composer method then you can go with Laravel Installer method also. For this you have to use “laravel new” command to install latest vesion first.

composer global require laravel/installer

laravel new your-project-name

Once the latest Laravel version install then update the composer.json file and change laravel version. Next remove the vendor file and run composer install command. Once finish you have to run php artisan and you will be able to see the version that you have set in composer.json file.

Consclusion

Today we learn two method of laravel different version of installation. Do you have any question fee freel contact us.

Related Trending Articles

Developer Diary

Share
Published by
Developer Diary

Recent Posts

Git Tag Cheat Sheet

Introduction Git tags are an essential feature of version control systems, offering a simple way…

2 months ago

Understanding Web Storage: Cookies, Local Storage

Introduction The methods that browsers employ to store data on a user's device are referred…

3 months ago

Setting up OpenVPN Access Server in Amazon VPC – AWS

Introduction A well-known open-source VPN technology, OpenVPN provides strong protection for both people and businesses.…

3 months ago

Enhance Error Tracking & Monitoring: Integrate Sentry with Node.js & Express.js

Introduction Integrating Sentry into a Node.js, Express.js, and MongoDB backend project significantly enhances error tracking…

3 months ago

Comparing Callbacks, Promises, and Async/Await in JavaScript

Introduction In the world of JavaScript development, efficiently managing asynchronous operations is essential. Asynchronous programming…

5 months ago

How To Secure Nginx with Let’s Encrypt on Ubuntu EC2 Instance

Introduction Let's Encrypt is a Certificate Authority (CA) that makes it simple to obtain and…

7 months ago