2011-10-31 21:19:55 +00:00
|
|
|
{
|
|
|
|
"name": "composer/composer",
|
|
|
|
"description": "Package Manager",
|
|
|
|
"keywords": ["package", "dependency", "autoload"],
|
|
|
|
"homepage": "http://getcomposer.org/",
|
|
|
|
"type": "library",
|
|
|
|
"license": "MIT",
|
|
|
|
"authors": [
|
|
|
|
{
|
|
|
|
"name": "Nils Adermann",
|
|
|
|
"email": "naderman@naderman.de",
|
|
|
|
"homepage": "http://www.naderman.de"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Jordi Boggiano",
|
|
|
|
"email": "j.boggiano@seld.be",
|
|
|
|
"homepage": "http://seld.be"
|
|
|
|
}
|
|
|
|
],
|
2012-05-31 08:49:10 +00:00
|
|
|
"support": {
|
|
|
|
"irc": "irc://irc.freenode.org/composer",
|
|
|
|
"issues": "https://github.com/composer/composer/issues"
|
|
|
|
},
|
2011-10-31 21:19:55 +00:00
|
|
|
"require": {
|
2012-04-03 12:33:19 +00:00
|
|
|
"php": ">=5.3.2",
|
2012-04-01 18:36:04 +00:00
|
|
|
"justinrainbow/json-schema": "1.1.*",
|
|
|
|
"seld/jsonlint": "1.*",
|
2012-08-15 15:52:50 +00:00
|
|
|
"symfony/console": "2.1.*@RC",
|
|
|
|
"symfony/finder": "2.1.*@RC",
|
2012-08-30 13:09:22 +00:00
|
|
|
"symfony/process": "2.1.*@dev"
|
2011-10-31 21:19:55 +00:00
|
|
|
},
|
2012-04-14 13:43:08 +00:00
|
|
|
"suggest": {
|
2012-07-20 08:37:11 +00:00
|
|
|
"ext-zip": "Enabling the zip extension allows you to unzip archives, and allows gzip compression of all internet traffic",
|
|
|
|
"ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages"
|
2011-10-31 21:19:55 +00:00
|
|
|
},
|
|
|
|
"autoload": {
|
|
|
|
"psr-0": { "Composer": "src/" }
|
2011-12-04 23:05:46 +00:00
|
|
|
},
|
2012-03-12 17:15:12 +00:00
|
|
|
"bin": ["bin/composer"],
|
|
|
|
"extra": {
|
|
|
|
"branch-alias": {
|
|
|
|
"dev-master": "1.0-dev"
|
|
|
|
}
|
2012-08-15 15:52:50 +00:00
|
|
|
}
|
2011-10-31 21:19:55 +00:00
|
|
|
}
|