Home>Article>Development Tools> What software is composer?
What software is composer?
Composer is a tool used to manage dependency relationships in PHP. It was proposed and implemented by Nils Adermann and Jordi Boggiano. The first version was released on March 1, 2012.
● We can declare the external tool libraries we depend on in the project, and Composer will help you install these dependent library files. With it, we can easily use one command to integrate other people’s excellent code Quote it into our project.
● Composer is not installed globally by default, but is installed based on a directory of a specified project (such as vendor).
● Composer requires PHP 5.3.2 or above, and openssl needs to be turned on.
● Composer can run on Windows, Linux and OSX platforms.
For more technical articles on composer usage, please visit thecomposer usage tutorialcolumn!
The above is the detailed content of What software is composer?. For more information, please follow other related articles on the PHP Chinese website!