1
0
Fork 0
composer/composer.json

87 lines
2.5 KiB
JSON
Raw Normal View History

2011-10-31 21:19:55 +00:00
{
"name": "composer/composer",
2018-06-24 08:56:35 +00:00
"type": "library",
2019-03-19 04:20:21 +00:00
"description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.",
2018-06-24 08:56:35 +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
"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"
}
],
"require": {
2015-10-28 04:43:02 +00:00
"php": "^5.3.2 || ^7.0",
2016-04-11 15:33:29 +00:00
"composer/ca-bundle": "^1.0",
"composer/semver": "^1.0",
"composer/spdx-licenses": "^1.2",
2018-04-11 16:19:13 +00:00
"composer/xdebug-handler": "^1.1",
2020-05-27 20:07:55 +00:00
"justinrainbow/json-schema": "^5.2.10",
2018-06-24 08:56:35 +00:00
"psr/log": "^1.0",
"seld/jsonlint": "^1.4",
2018-06-24 08:56:35 +00:00
"seld/phar-utils": "^1.0",
2019-11-16 16:46:49 +00:00
"symfony/console": "^2.7 || ^3.0 || ^4.0 || ^5.0",
"symfony/filesystem": "^2.7 || ^3.0 || ^4.0 || ^5.0",
"symfony/finder": "^2.7 || ^3.0 || ^4.0 || ^5.0",
"symfony/process": "^2.7 || ^3.0 || ^4.0 || ^5.0"
2018-06-24 08:56:35 +00:00
},
"conflict": {
2020-06-03 08:24:27 +00:00
"symfony/console": "2.8.38"
2011-10-31 21:19:55 +00:00
},
2013-01-10 10:51:02 +00:00
"require-dev": {
2020-06-03 08:24:27 +00:00
"symfony/phpunit-bridge": "^4.2",
2020-02-07 03:18:45 +00:00
"phpspec/prophecy": "^1.10"
2013-01-10 10:51:02 +00:00
},
2018-06-24 08:56:35 +00:00
"suggest": {
"ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
"ext-zip": "Enabling the zip extension allows you to unzip archives",
"ext-zlib": "Allow gzip compression of HTTP requests"
},
"config": {
"platform": {
2015-10-28 02:44:08 +00:00
"php": "5.3.9"
}
},
2018-06-24 08:56:35 +00:00
"extra": {
"branch-alias": {
"dev-master": "1.10-dev"
2018-06-24 08:56:35 +00:00
}
2011-10-31 21:19:55 +00:00
},
"autoload": {
2018-06-24 08:56:35 +00:00
"psr-4": {
"Composer\\": "src/Composer"
}
},
2014-02-27 09:39:33 +00:00
"autoload-dev": {
2018-06-24 08:56:35 +00:00
"psr-4": {
"Composer\\Test\\": "tests/Composer/Test"
2012-03-12 17:15:12 +00:00
}
},
2018-06-24 08:56:35 +00:00
"bin": [
"bin/composer"
],
"scripts": {
"compile": "@php -dphar.readonly=0 bin/compile",
2020-02-07 20:57:11 +00:00
"test": "simple-phpunit"
2018-06-24 08:56:35 +00:00
},
"scripts-descriptions": {
"compile": "Compile composer.phar",
"test": "Run all tests"
},
2018-06-24 08:56:35 +00:00
"support": {
"issues": "https://github.com/composer/composer/issues",
"irc": "irc://irc.freenode.org/composer"
2012-08-15 15:52:50 +00:00
}
2011-10-31 21:19:55 +00:00
}