phpdoc-parser/composer.json

42 lines
808 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": {
"php": "^7.2 || ^8.0"
2017-11-18 16:27:49 +01:00
},
2017-11-18 21:58:26 +01:00
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.2",
2019-12-20 13:25:48 +01:00
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^1.5",
2021-09-12 22:31:50 +02:00
"phpstan/phpstan-strict-rules": "^1.0",
"phpunit/phpunit": "^9.5",
"symfony/process": "^5.2"
2017-12-03 14:42:17 +01:00
},
"config": {
"platform": {
"php": "7.4.6"
},
2022-01-06 13:43:03 +01:00
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
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
}