| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- {
- "name": "roave/better-reflection",
- "description": "Better Reflection - an improved code reflection API",
- "license": "MIT",
- "require": {
- "php": ">=7.2.0,<7.5.0",
- "ext-json": "*",
- "jetbrains/phpstorm-stubs": "2019.3",
- "nikic/php-parser": "^4.4.0",
- "phpdocumentor/reflection-docblock": "^5.1.0",
- "phpdocumentor/type-resolver": "^1.1.0",
- "roave/signature": "^1.0"
- },
- "authors": [
- {
- "name": "James Titcumb",
- "email": "james@asgrim.com",
- "homepage": "https://github.com/asgrim"
- },
- {
- "name": "Marco Pivetta",
- "email": "ocramius@gmail.com",
- "homepage": "https://ocramius.github.io/"
- },
- {
- "name": "Gary Hockin",
- "email": "gary@roave.com",
- "homepage": "https://github.com/geeh"
- },
- {
- "name": "Jaroslav Hanslík",
- "email": "kukulich@kukulich.cz",
- "homepage": "https://github.com/kukulich"
- }
- ],
- "require-dev": {
- "doctrine/coding-standard": "^7.0.2",
- "phpstan/phpstan": "^0.12.25",
- "phpunit/phpunit": "^8.5.4",
- "vimeo/psalm": "3.11.2"
- },
- "autoload": {
- "psr-4": {
- "Roave\\BetterReflection\\": "src"
- }
- },
- "autoload-dev": {
- "psr-4": {
- "Roave\\BetterReflectionTest\\": "test/unit",
- "Roave\\BetterReflectionBenchmark\\": "test/benchmark"
- }
- },
- "suggest": {
- "composer/composer": "Required to use the ComposerSourceLocator"
- },
- "extra": {
- "branch-alias": {
- "dev-master": "4.0-dev"
- }
- },
- "minimum-stability": "dev",
- "prefer-stable": true
- }
|