You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

84 lines
2.8 KiB
Markdown

Composer - Dependency Management for PHP
========================================
Composer helps you declare, manage and install dependencies of PHP projects, ensuring you have the right stack everywhere.
See [https://getcomposer.org/](https://getcomposer.org/) for more information and documentation.
[![Build Status](https://travis-ci.org/composer/composer.svg?branch=master)](https://travis-ci.org/composer/composer)
Installation / Usage
--------------------
1. Download the [`composer.phar`](https://getcomposer.org/composer.phar) executable or use the installer.
``` sh
$ curl -sS https://getcomposer.org/installer | php
```
13 years ago
2. Create a composer.json defining your dependencies. Note that this example is
a short version for applications that are not meant to be published as packages
themselves. To create libraries/packages please read the
[documentation](http://getcomposer.org/doc/02-libraries.md).
``` json
{
"require": {
"monolog/monolog": ">=1.0.0"
}
}
```
13 years ago
3. Run Composer: `php composer.phar install`
4. Browse for more packages on [Packagist](https://packagist.org).
12 years ago
Global installation of Composer (manual)
----------------------------------------
Follow instructions [in the documentation](http://getcomposer.org/doc/00-intro.md#globally)
12 years ago
Updating Composer
-----------------
Running `php composer.phar self-update` or equivalent will update a phar
install with the latest version.
Community
---------
12 years ago
Mailing lists for [user support](http://groups.google.com/group/composer-users) and
[development](http://groups.google.com/group/composer-dev).
IRC channels are on irc.freenode.org: [#composer](irc://irc.freenode.org/composer)
for users and [#composer-dev](irc://irc.freenode.org/composer-dev) for development.
12 years ago
Stack Overflow has a growing collection of
[Composer related questions](http://stackoverflow.com/questions/tagged/composer-php).
Requirements
------------
PHP 5.3.2 or above (at least 5.3.4 recommended to avoid potential bugs)
Authors
-------
Nils Adermann - <naderman@naderman.de> - <http://twitter.com/naderman> - <http://www.naderman.de><br />
Jordi Boggiano - <j.boggiano@seld.be> - <http://twitter.com/seldaek> - <http://seld.be><br />
See also the list of [contributors](https://github.com/composer/composer/contributors) who participated in this project.
License
-------
Composer is licensed under the MIT License - see the LICENSE file for details
Acknowledgments
---------------
- This project's Solver started out as a PHP port of openSUSE's
[Libzypp satsolver](http://en.opensuse.org/openSUSE:Libzypp_satsolver).
- This project uses hiddeninput.exe to prompt for passwords on windows, sources
and details can be found on the [github page of the project](https://github.com/Seldaek/hidden-input).