2011-10-31 21:19:55 +00:00
|
|
|
{
|
|
|
|
"name": "composer/composer",
|
2014-02-13 13:40:09 +00:00
|
|
|
"description": "Composer helps you declare, manage and install dependencies of PHP projects, ensuring you have the right stack everywhere.",
|
2011-10-31 21:19:55 +00:00
|
|
|
"keywords": ["package", "dependency", "autoload"],
|
2015-05-04 17:37:57 +00:00
|
|
|
"homepage": "https://getcomposer.org/",
|
2011-10-31 21:19:55 +00:00
|
|
|
"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": {
|
2015-10-28 04:43:02 +00:00
|
|
|
"php": "^5.3.2 || ^7.0",
|
2016-09-14 16:06:37 +00:00
|
|
|
"justinrainbow/json-schema": "^1.6 || ^2.0 || ^3.0",
|
2016-04-11 15:33:29 +00:00
|
|
|
"composer/ca-bundle": "^1.0",
|
2015-09-24 14:28:28 +00:00
|
|
|
"composer/semver": "^1.0",
|
2016-04-11 15:33:29 +00:00
|
|
|
"composer/spdx-licenses": "^1.0",
|
2015-11-21 02:35:00 +00:00
|
|
|
"seld/jsonlint": "^1.4",
|
2015-10-28 04:43:02 +00:00
|
|
|
"symfony/console": "^2.5 || ^3.0",
|
|
|
|
"symfony/finder": "^2.2 || ^3.0",
|
|
|
|
"symfony/process": "^2.1 || ^3.0",
|
|
|
|
"symfony/filesystem": "^2.5 || ^3.0",
|
|
|
|
"seld/phar-utils": "^1.0",
|
2016-04-11 15:33:29 +00:00
|
|
|
"seld/cli-prompt": "^1.0",
|
|
|
|
"psr/log": "^1.0"
|
2011-10-31 21:19:55 +00:00
|
|
|
},
|
2013-01-10 10:51:02 +00:00
|
|
|
"require-dev": {
|
2015-10-28 14:11:21 +00:00
|
|
|
"phpunit/phpunit": "^4.5 || ^5.0.5",
|
2016-05-26 16:02:51 +00:00
|
|
|
"phpunit/phpunit-mock-objects": "^2.3 || ^3.0"
|
2013-01-10 10:51:02 +00:00
|
|
|
},
|
2015-04-29 21:47:00 +00:00
|
|
|
"config": {
|
|
|
|
"platform": {
|
2015-10-28 02:44:08 +00:00
|
|
|
"php": "5.3.9"
|
2015-04-29 21:47:00 +00:00
|
|
|
}
|
|
|
|
},
|
2012-04-14 13:43:08 +00:00
|
|
|
"suggest": {
|
2016-02-04 00:34:01 +00:00
|
|
|
"ext-zip": "Enabling the zip extension allows you to unzip archives",
|
|
|
|
"ext-zlib": "Allow gzip compression of HTTP requests",
|
2012-07-20 08:37:11 +00:00
|
|
|
"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": {
|
2015-10-28 03:17:26 +00:00
|
|
|
"psr-4": { "Composer\\": "src/Composer" }
|
2011-12-04 23:05:46 +00:00
|
|
|
},
|
2014-02-27 09:39:33 +00:00
|
|
|
"autoload-dev": {
|
2015-10-28 03:17:26 +00:00
|
|
|
"psr-4": { "Composer\\Test\\": "tests/Composer/Test" }
|
2014-02-27 09:39:33 +00:00
|
|
|
},
|
2012-03-12 17:15:12 +00:00
|
|
|
"bin": ["bin/composer"],
|
|
|
|
"extra": {
|
|
|
|
"branch-alias": {
|
2016-09-25 21:08:15 +00:00
|
|
|
"dev-master": "1.3-dev"
|
2012-03-12 17:15:12 +00:00
|
|
|
}
|
2014-07-20 19:55:24 +00:00
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"test": "phpunit"
|
2012-08-15 15:52:50 +00:00
|
|
|
}
|
2011-10-31 21:19:55 +00:00
|
|
|
}
|