Home > Article > Development Tools > How does Composer perform a downgrade operation? Teach you how to downgrade to version 1
This article is introduced by the tutorial column of composer to downgrade Composer to version 1. I hope it will be helpful to friends in need!
Composer domestic acceleration: Composer downgraded to version 1
View the current version:
$ composer --version
Perform downgrade operation:
$ composer self-update --1
Determine the current version:
$ composer --version
Related introduction:
Composer is A dependency management tool for PHP5.3 and above. It allows you to declare the code libraries your project depends on and it will install them for you in your project. Composer is not a package manager. Yes, it involves "packages" and "libraries", but it's managed on a per-project basis, with installations in some directory within your project (e.g. vendor). By default it won't install anything globally. So this is just a dependency management.
The above is the detailed content of How does Composer perform a downgrade operation? Teach you how to downgrade to version 1. For more information, please follow other related articles on the PHP Chinese website!