How to Switch Between Composer Version 1 and 2 In Laravel?
Hi Dev,
Many legacy projects require a dependency that still running on composer version 1 but what if your current composer version is 2?
In this short post, you'll learn how to switch between version 1 and version 2 with few simple commands.
Let's Start Solution Following Command.
Switching Versions
To change to version one run the self-update command and pass in the --1 flag.
This will change composer to version one and now you can install your dependencies.
composer self-update --1
Once you have installed your dependencies, now you can run the same command and pass in --2 as the flag and this will switch back to composer version 2.
composer self-update --2
Switching Specific Version
You can also change to a specific version which includes the minor version number as well and it's like below.
composer self-update 1.10.22
composer self-update 2.1.3
Update and Revert Version
Update the composer to the latest version, and simply run the "self-update" command, and to revert back to the previous version do pass in the --rollback.
composer self-update
composer self-update --rollback
Preview Version
For the anyone that's interested to use the preview version, the command below will allow you to get the pre-released version.
composer self-update --preview
I hope it help you...
- How to Notifications With database Driver in Laravel 11?
- How to Send Email Via Notification in Laravel 11?
- How to Install and Configure Laravel 11 Debugbar?
- How to Like Dislike System in Laravel 11?
- How to Paginate a Model with Relationship in Laravel 11?
- Laravel 11 Upload Files to Amazon S3 Example
- Laravel 11 Send WhatsApp Messages Example
- Laravel 11 Rest API Authentication Using JWT Tutorial