Composer (software)

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by AdamPro (talk | contribs) at 03:54, 22 October 2015 (→‎External links). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Composer
Developer(s)Nils Adermann,
Jordi Boggiano
Stable release
1.0.0-alpha10 / April 15, 2015 (2015-04-15)
Repository
Written inPHP
Operating systemCross-platform
TypePackage manager
LicenseMIT License
Websitegetcomposer.org

Composer is an application-level package manager for the PHP programming language that provides a standard format for managing dependencies of PHP software and required libraries. It was developed by Nils Adermann and Jordi Boggiano, who continue to manage the project. They began development in April 2011 and first released it on March 1, 2012.[1] Composer is strongly inspired by Node.js's "npm" and Ruby's "bundler".[2]

Composer runs through the command line and installs dependencies (e.g. libraries) for an application. It also allows users to install PHP applications that are available on "Packagist"[3] which is its main repository containing available packages. It also provides autoload capabilities for libraries that specify autoload information to ease usage of third-party code.

Composer is used as an integral part of several popular open-source PHP projects, including Laravel.[4]

References

  1. ^ Software CHANGELOG, github.com, Retrieved November 28, 2013.
  2. ^ Getting Started/Dependency management, getcomposer.org, Retrieved November 28, 2013.
  3. ^ See packagist.org
  4. ^ Maks Surguy (July 27, 2013). "History of Laravel PHP framework, Eloquence emerging". maxoffsky.com. Retrieved May 10, 2015.

External links