phpdoc-parser/composer.json

25 lines
620 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": {
"php": "~7.0"
},
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",
2017-11-20 08:05:03 +01:00
"phpstan/phpstan": "^0.9",
2017-11-18 21:58:26 +01:00
"phpunit/phpunit": "^6.3",
"slevomat/coding-standard": "^3.3.0"
},
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-07-10 15:16:28 +02:00
}
}