Composer - Package Management for PHP
Composer is a package manager tracking local dependencies of your projects and libraries.See the about page on packagist.org for more information.
Installation / Usage
- Download the
composer.phar
executable or use the installer.
$ curl -s http://getcomposer.org/installer | php
- 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 guidelines.
{ "require": { "monolog/monolog": ">=1.0.0" } }
- Run Composer:
php composer.phar install
- Browse for more packages on Packagist.
https://github.com/composer/composer
No comments:
Post a Comment