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",
|
2020-04-12 22:54:46 +00:00
|
|
|
"homepage": "https://www.naderman.de"
|
2011-10-31 21:19:55 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Jordi Boggiano",
|
|
|
|
"email": "j.boggiano@seld.be",
|
2020-04-12 22:54:46 +00:00
|
|
|
"homepage": "https://seld.be"
|
2011-10-31 21:19:55 +00:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"require": {
|
2021-12-08 15:13:33 +00:00
|
|
|
"php": "^7.2.5 || ^8.0",
|
2024-08-21 15:16:43 +00:00
|
|
|
"composer/ca-bundle": "^1.5",
|
2024-10-04 09:13:17 +00:00
|
|
|
"composer/class-map-generator": "^1.4.0",
|
2021-04-07 13:54:37 +00:00
|
|
|
"composer/metadata-minifier": "^1.0",
|
2024-05-29 21:12:06 +00:00
|
|
|
"composer/semver": "^3.3",
|
2022-06-06 11:18:10 +00:00
|
|
|
"composer/spdx-licenses": "^1.5.7",
|
2022-02-26 13:02:11 +00:00
|
|
|
"composer/xdebug-handler": "^2.0.2 || ^3.0.3",
|
2024-07-06 21:35:00 +00:00
|
|
|
"justinrainbow/json-schema": "^5.3",
|
2022-01-13 12:01:32 +00:00
|
|
|
"psr/log": "^1.0 || ^2.0 || ^3.0",
|
2015-11-21 02:35:00 +00:00
|
|
|
"seld/jsonlint": "^1.4",
|
2021-12-09 21:19:03 +00:00
|
|
|
"seld/phar-utils": "^1.2",
|
2024-08-21 15:10:16 +00:00
|
|
|
"symfony/console": "^5.4.35 || ^6.3.12 || ^7.0.3",
|
|
|
|
"symfony/filesystem": "^5.4.35 || ^6.3.12 || ^7.0.3",
|
|
|
|
"symfony/finder": "^5.4.35 || ^6.3.12 || ^7.0.3",
|
|
|
|
"symfony/process": "^5.4.35 || ^6.3.12 || ^7.0.3",
|
2024-11-15 12:53:30 +00:00
|
|
|
"react/promise": "^2.11 || ^3.2",
|
2024-07-25 14:28:25 +00:00
|
|
|
"composer/pcre": "^2.2 || ^3.2",
|
2022-02-16 12:24:57 +00:00
|
|
|
"symfony/polyfill-php73": "^1.24",
|
2022-07-20 15:00:20 +00:00
|
|
|
"symfony/polyfill-php80": "^1.24",
|
2022-10-25 14:24:02 +00:00
|
|
|
"symfony/polyfill-php81": "^1.24",
|
2022-07-20 15:00:20 +00:00
|
|
|
"seld/signal-handler": "^2.0"
|
2018-06-24 08:56:35 +00:00
|
|
|
},
|
2013-01-10 10:51:02 +00:00
|
|
|
"require-dev": {
|
2024-08-21 15:10:16 +00:00
|
|
|
"symfony/phpunit-bridge": "^6.4.3 || ^7.0.1",
|
2024-07-25 14:28:25 +00:00
|
|
|
"phpstan/phpstan": "^1.11.8",
|
2024-05-22 07:09:04 +00:00
|
|
|
"phpstan/phpstan-phpunit": "^1.4.0",
|
|
|
|
"phpstan/phpstan-deprecation-rules": "^1.2.0",
|
|
|
|
"phpstan/phpstan-strict-rules": "^1.6.0",
|
|
|
|
"phpstan/phpstan-symfony": "^1.4.0"
|
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"
|
2018-04-13 13:25:33 +00:00
|
|
|
},
|
2015-04-29 21:47:00 +00:00
|
|
|
"config": {
|
|
|
|
"platform": {
|
2021-12-08 15:13:33 +00:00
|
|
|
"php": "7.2.5"
|
2020-04-21 13:25:35 +00:00
|
|
|
},
|
|
|
|
"platform-check": false
|
2015-04-29 21:47:00 +00:00
|
|
|
},
|
2018-06-24 08:56:35 +00:00
|
|
|
"extra": {
|
|
|
|
"branch-alias": {
|
2024-09-17 12:08:38 +00:00
|
|
|
"dev-main": "2.8-dev"
|
2022-06-06 14:42:24 +00:00
|
|
|
},
|
|
|
|
"phpstan": {
|
|
|
|
"includes": [
|
|
|
|
"phpstan/rules.neon"
|
|
|
|
]
|
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": {
|
2023-03-21 10:19:53 +00:00
|
|
|
"Composer\\": "src/Composer/"
|
2018-06-24 08:56:35 +00:00
|
|
|
}
|
2011-12-04 23:05:46 +00:00
|
|
|
},
|
2014-02-27 09:39:33 +00:00
|
|
|
"autoload-dev": {
|
2018-06-24 08:56:35 +00:00
|
|
|
"psr-4": {
|
2023-03-21 10:19:53 +00:00
|
|
|
"Composer\\Test\\": "tests/Composer/Test/"
|
2024-05-31 13:08:44 +00:00
|
|
|
},
|
|
|
|
"exclude-from-classmap": [
|
|
|
|
"tests/Composer/Test/Fixtures/",
|
|
|
|
"tests/Composer/Test/Autoload/Fixtures",
|
|
|
|
"tests/Composer/Test/Autoload/MinimumVersionSupport",
|
|
|
|
"tests/Composer/Test/Plugin/Fixtures"
|
|
|
|
]
|
2014-07-20 19:55:24 +00:00
|
|
|
},
|
2018-06-24 08:56:35 +00:00
|
|
|
"bin": [
|
|
|
|
"bin/composer"
|
|
|
|
],
|
2014-07-20 19:55:24 +00:00
|
|
|
"scripts": {
|
2019-01-10 14:00:56 +00:00
|
|
|
"compile": "@php -dphar.readonly=0 bin/compile",
|
2021-12-08 21:06:17 +00:00
|
|
|
"test": "@php simple-phpunit",
|
2021-08-21 15:41:52 +00:00
|
|
|
"phpstan": "@php vendor/bin/phpstan analyse --configuration=phpstan/config.neon"
|
2018-06-24 08:56:35 +00:00
|
|
|
},
|
2019-01-10 14:00:56 +00:00
|
|
|
"scripts-descriptions": {
|
|
|
|
"compile": "Compile composer.phar",
|
2021-08-21 15:41:52 +00:00
|
|
|
"test": "Run all tests",
|
2022-02-16 12:24:57 +00:00
|
|
|
"phpstan": "Runs PHPStan"
|
2019-01-10 14:00:56 +00:00
|
|
|
},
|
2018-06-24 08:56:35 +00:00
|
|
|
"support": {
|
|
|
|
"issues": "https://github.com/composer/composer/issues",
|
2023-03-10 21:28:10 +00:00
|
|
|
"irc": "ircs://irc.libera.chat:6697/composer",
|
|
|
|
"security": "https://github.com/composer/composer/security/policy"
|
2012-08-15 15:52:50 +00:00
|
|
|
}
|
2011-10-31 21:19:55 +00:00
|
|
|
}
|