composer.json 959 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "phpdocumentor/reflection-docblock",
  3. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  4. "type": "library",
  5. "license": "MIT",
  6. "authors": [
  7. {
  8. "name": "Mike van Riel",
  9. "email": "me@mikevanriel.com"
  10. }
  11. ],
  12. "minimum-stability": "alpha",
  13. "require": {
  14. "php": ">=7.1",
  15. "phpdocumentor/type-resolver": "^0",
  16. "webmozart/assert": "^1"
  17. },
  18. "require-dev": {
  19. "mockery/mockery": "^1",
  20. "doctrine/instantiator": "^1"
  21. },
  22. "autoload": {
  23. "psr-4": {
  24. "phpDocumentor\\Reflection\\": "src"
  25. }
  26. },
  27. "autoload-dev": {
  28. "psr-4": {
  29. "phpDocumentor\\Reflection\\": "tests/unit"
  30. }
  31. },
  32. "extra": {
  33. "branch-alias": {
  34. "dev-master": "5.x-dev"
  35. }
  36. }
  37. }