mirror of
https://github.com/barryvdh/ReflectionDocBlock.git
synced 2026-08-18 01:57:13 +00:00
* composer: put require- together * add phpstan * add phpstan to travis * phpstan fixes * phpstan fixes * phpstan fixes * drop null defaults since every property is null by default * DescriptionFactory: fix parse nullable type * travis: add phpstan max * travis: fix phpstan config
40 lines
1.0 KiB
JSON
40 lines
1.0 KiB
JSON
{
|
|
"name": "phpdocumentor/reflection-docblock",
|
|
"description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
|
|
"type": "library",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Mike van Riel",
|
|
"email": "[email protected]"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^7.1",
|
|
"phpdocumentor/reflection-common": "^1.0",
|
|
"phpdocumentor/type-resolver": "^0.4",
|
|
"webmozart/assert": "^1.0"
|
|
},
|
|
"require-dev": {
|
|
"mockery/mockery": "^1.0",
|
|
"phpunit/phpunit": "^6.4",
|
|
"doctrine/instantiator": "^1.0",
|
|
"phpstan/phpstan": "^0.9.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"phpDocumentor\\Reflection\\": "src"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"phpDocumentor\\Reflection\\": "tests/unit"
|
|
}
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "4.x-dev"
|
|
}
|
|
}
|
|
}
|