phpdoc-parser/composer.json

31 lines
731 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-20 08:05:03 +01:00
"minimum-stability": "dev",
"prefer-stable": true,
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": {
"consistence/coding-standard": "^2.0.0",
"jakub-onderka/php-parallel-lint": "^0.9.2",
"phing/phing": "^2.16.0",
"phpstan/phpstan-shim": "^0.9.2",
2017-11-18 21:58:26 +01:00
"phpunit/phpunit": "^6.3",
2018-04-12 16:16:58 +02:00
"slevomat/coding-standard": "^3.3.0",
"symfony/process": "^3.4 || ^4.0"
2017-11-18 21:58:26 +01:00
},
2017-07-10 15:16:28 +02:00
"autoload": {
"psr-4": {"PHPStan\\PhpDocParser\\": ["src/"]}
2017-11-20 08:05:03 +01:00
},
"autoload-dev": {
"psr-4": {"PHPStan\\PhpDocParser\\": ["tests/PHPStan"]}
2017-12-03 14:42:17 +01:00
},
"extra": {
"branch-alias": {
"dev-master": "0.2-dev"
2017-12-03 14:42:17 +01:00
}
2017-07-10 15:16:28 +02:00
}
}