phpdoc-parser/composer.json

45 lines
918 B
JSON
Raw Normal View History

2017-07-10 15:16:28 +02:00
{
"name": "phpstan/phpdoc-parser",
2017-11-19 10:25:35 +01:00
"description": "PHPDoc parser with support for nullable, intersection and generic types",
2017-07-10 15:16:28 +02:00
"license": "MIT",
2017-11-18 16:27:49 +01:00
"require": {
2018-04-12 13:43:46 +02:00
"php": "~7.1"
2017-11-18 16:27:49 +01:00
},
2017-11-18 21:58:26 +01:00
"require-dev": {
2019-04-23 21:27:03 +02:00
"consistence/coding-standard": "^3.5",
2019-12-20 13:25:48 +01:00
"ergebnis/composer-normalize": "^2.0.2",
2017-11-18 21:58:26 +01:00
"jakub-onderka/php-parallel-lint": "^0.9.2",
"phing/phing": "^2.16.0",
2019-12-20 13:25:48 +01:00
"phpstan/extension-installer": "^1.0",
2020-04-30 15:54:19 +02:00
"phpstan/phpstan": "^0.12.20",
2019-12-20 13:25:48 +01:00
"phpstan/phpstan-strict-rules": "^0.12",
2017-11-18 21:58:26 +01:00
"phpunit/phpunit": "^6.3",
2019-04-23 21:27:03 +02:00
"slevomat/coding-standard": "^4.7.2",
2019-12-20 13:25:48 +01:00
"symfony/process": "^4.0"
2017-12-03 14:42:17 +01:00
},
"config": {
"sort-packages": true
},
2017-12-03 14:42:17 +01:00
"extra": {
"branch-alias": {
2019-07-16 12:59:42 +02:00
"dev-master": "0.4-dev"
2017-12-03 14:42:17 +01:00
}
2019-07-16 13:14:05 +02:00
},
2019-12-20 13:25:48 +01:00
"autoload": {
"psr-4": {
"PHPStan\\PhpDocParser\\": [
"src/"
]
}
},
"autoload-dev": {
"psr-4": {
"PHPStan\\PhpDocParser\\": [
"tests/PHPStan"
]
}
},
2019-07-16 13:14:05 +02:00
"minimum-stability": "dev",
"prefer-stable": true
2017-07-10 15:16:28 +02:00
}