composer.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "roave/better-reflection",
  3. "description": "Better Reflection - an improved code reflection API",
  4. "license": "MIT",
  5. "require": {
  6. "php": ">=7.2.0,<7.5.0",
  7. "ext-json": "*",
  8. "jetbrains/phpstorm-stubs": "2019.3",
  9. "nikic/php-parser": "^4.4.0",
  10. "phpdocumentor/reflection-docblock": "^5.1.0",
  11. "phpdocumentor/type-resolver": "^1.1.0",
  12. "roave/signature": "^1.0"
  13. },
  14. "authors": [
  15. {
  16. "name": "James Titcumb",
  17. "email": "james@asgrim.com",
  18. "homepage": "https://github.com/asgrim"
  19. },
  20. {
  21. "name": "Marco Pivetta",
  22. "email": "ocramius@gmail.com",
  23. "homepage": "https://ocramius.github.io/"
  24. },
  25. {
  26. "name": "Gary Hockin",
  27. "email": "gary@roave.com",
  28. "homepage": "https://github.com/geeh"
  29. },
  30. {
  31. "name": "Jaroslav Hanslík",
  32. "email": "kukulich@kukulich.cz",
  33. "homepage": "https://github.com/kukulich"
  34. }
  35. ],
  36. "require-dev": {
  37. "doctrine/coding-standard": "^7.0.2",
  38. "phpstan/phpstan": "^0.12.25",
  39. "phpunit/phpunit": "^8.5.4",
  40. "vimeo/psalm": "3.11.2"
  41. },
  42. "autoload": {
  43. "psr-4": {
  44. "Roave\\BetterReflection\\": "src"
  45. }
  46. },
  47. "autoload-dev": {
  48. "psr-4": {
  49. "Roave\\BetterReflectionTest\\": "test/unit",
  50. "Roave\\BetterReflectionBenchmark\\": "test/benchmark"
  51. }
  52. },
  53. "suggest": {
  54. "composer/composer": "Required to use the ComposerSourceLocator"
  55. },
  56. "extra": {
  57. "branch-alias": {
  58. "dev-master": "4.0-dev"
  59. }
  60. },
  61. "minimum-stability": "dev",
  62. "prefer-stable": true
  63. }