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": {
|
2020-06-05 08:39:56 +00:00
|
|
|
"php": "^5.3.2 || ^7.0 || ^8.0",
|
2016-04-11 15:33:29 +00:00
|
|
|
"composer/ca-bundle": "^1.0",
|
2021-04-07 13:54:37 +00:00
|
|
|
"composer/metadata-minifier": "^1.0",
|
2020-05-27 19:57:40 +00:00
|
|
|
"composer/semver": "^3.0",
|
2018-01-04 12:49:44 +00:00
|
|
|
"composer/spdx-licenses": "^1.2",
|
2022-02-16 09:43:21 +00:00
|
|
|
"composer/xdebug-handler": "^2.0 || ^3.0",
|
2021-07-22 10:42:01 +00:00
|
|
|
"justinrainbow/json-schema": "^5.2.11",
|
2021-10-14 15:19:23 +00:00
|
|
|
"psr/log": "^1.0 || ^2.0",
|
2015-11-21 02:35:00 +00:00
|
|
|
"seld/jsonlint": "^1.4",
|
2018-06-24 08:56:35 +00:00
|
|
|
"seld/phar-utils": "^1.0",
|
2021-11-30 09:31:00 +00:00
|
|
|
"symfony/console": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
|
2021-05-20 07:42:21 +00:00
|
|
|
"symfony/filesystem": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0 || ^6.0",
|
|
|
|
"symfony/finder": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0 || ^6.0",
|
|
|
|
"symfony/process": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0 || ^6.0",
|
2021-12-07 10:03:51 +00:00
|
|
|
"react/promise": "^1.2 || ^2.7",
|
|
|
|
"composer/pcre": "^1.0"
|
2018-06-24 08:56:35 +00:00
|
|
|
},
|
2013-01-10 10:51:02 +00:00
|
|
|
"require-dev": {
|
2021-05-20 07:42:21 +00:00
|
|
|
"symfony/phpunit-bridge": "^4.2 || ^5.0 || ^6.0",
|
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"
|
2018-04-13 13:25:33 +00:00
|
|
|
},
|
2015-04-29 21:47:00 +00:00
|
|
|
"config": {
|
|
|
|
"platform": {
|
2015-10-28 02:44:08 +00:00
|
|
|
"php": "5.3.9"
|
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": {
|
2021-11-09 15:04:08 +00:00
|
|
|
"dev-main": "2.2-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"
|
|
|
|
}
|
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": {
|
2019-12-10 21:31:07 +00:00
|
|
|
"Composer\\Test\\": "tests/Composer/Test",
|
|
|
|
"Composer\\PHPStanRules\\": "phpstan/Rules/src",
|
|
|
|
"Composer\\PHPStanRulesTests\\": "phpstan/Rules/tests"
|
|
|
|
},
|
|
|
|
"classmap": [
|
|
|
|
"phpstan/Rules/tests/data"
|
|
|
|
]
|
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-07 08:50:35 +00:00
|
|
|
"test": "@php simple-phpunit",
|
2021-08-21 15:41:52 +00:00
|
|
|
"phpstan-setup": [
|
|
|
|
"@composer config platform --unset",
|
2021-11-14 19:42:24 +00:00
|
|
|
"@composer update",
|
2022-01-21 11:48:16 +00:00
|
|
|
"@composer require --dev phpstan/phpstan:1.4.* phpstan/phpstan-phpunit:1.0.* phpstan/phpstan-deprecation-rules:1.0.* phpstan/phpstan-strict-rules:1.1.* phpunit/phpunit:^7.5.20 --with-all-dependencies",
|
2021-08-21 15:41:52 +00:00
|
|
|
"git checkout composer.json composer.lock"
|
|
|
|
],
|
|
|
|
"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",
|
|
|
|
"phpstan-setup": "Prepare environment to run PHPStan locally (must be run with PHP7.4)",
|
|
|
|
"phpstan": "Runs PHPStan (after phpstan-setup was executed, must be run with PHP7.4)"
|
2019-01-10 14:00:56 +00:00
|
|
|
},
|
2018-06-24 08:56:35 +00:00
|
|
|
"support": {
|
|
|
|
"issues": "https://github.com/composer/composer/issues",
|
2021-08-19 14:13:45 +00:00
|
|
|
"irc": "ircs://irc.libera.chat:6697/composer"
|
2012-08-15 15:52:50 +00:00
|
|
|
}
|
2011-10-31 21:19:55 +00:00
|
|
|
}
|