1
0
Fork 0
composer/composer.json

105 lines
3.3 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": "https://www.naderman.de"
2011-10-31 21:19:55 +00:00
},
{
"name": "Jordi Boggiano",
"email": "j.boggiano@seld.be",
"homepage": "https://seld.be"
2011-10-31 21:19:55 +00:00
}
],
"require": {
"php": "^7.2.5 || ^8.0",
2016-04-11 15:33:29 +00:00
"composer/ca-bundle": "^1.0",
"composer/class-map-generator": "^1.0",
"composer/metadata-minifier": "^1.0",
"composer/semver": "^3.2.5",
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",
2021-07-22 10:42:01 +00:00
"justinrainbow/json-schema": "^5.2.11",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"seld/jsonlint": "^1.4",
2021-12-09 21:19:03 +00:00
"seld/phar-utils": "^1.2",
"symfony/console": "^5.4.11 || ^6.0.11 || ^7",
"symfony/filesystem": "^5.4 || ^6.0 || ^7",
"symfony/finder": "^5.4 || ^6.0 || ^7",
"symfony/process": "^5.4 || ^6.0 || ^7",
2021-12-09 10:35:09 +00:00
"react/promise": "^2.8",
2022-11-17 10:34:54 +00:00
"composer/pcre": "^2.1 || ^3.1",
"symfony/polyfill-php73": "^1.24",
2022-07-20 15:00:20 +00:00
"symfony/polyfill-php80": "^1.24",
"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": {
"symfony/phpunit-bridge": "^6.0 || ^7",
"phpstan/phpstan": "^1.9.3",
2021-12-08 16:03:05 +00:00
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-deprecation-rules": "^1",
"phpstan/phpstan-strict-rules": "^1",
2022-08-25 15:37:49 +00:00
"phpstan/phpstan-symfony": "^1.2.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": {
"php": "7.2.5"
},
"platform-check": false
},
2018-06-24 08:56:35 +00:00
"extra": {
"branch-alias": {
2023-02-04 13:57:31 +00:00
"dev-main": "2.6-dev"
},
"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": {
"Composer\\": "src/Composer/"
2018-06-24 08:56:35 +00:00
}
},
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/"
2022-01-03 14:40:32 +00:00
}
},
2018-06-24 08:56:35 +00:00
"bin": [
"bin/composer"
],
"scripts": {
"compile": "@php -dphar.readonly=0 bin/compile",
2021-12-08 21:06:17 +00:00
"test": "@php simple-phpunit",
"phpstan": "@php vendor/bin/phpstan analyse --configuration=phpstan/config.neon"
2018-06-24 08:56:35 +00:00
},
"scripts-descriptions": {
"compile": "Compile composer.phar",
"test": "Run all tests",
"phpstan": "Runs PHPStan"
},
2018-06-24 08:56:35 +00:00
"support": {
"issues": "https://github.com/composer/composer/issues",
"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
}