composer.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. "name": "Jaap van Otterdijk",
  13. "email": "account@ijaap.nl"
  14. }
  15. ],
  16. "require": {
  17. "php": "^7.2 || ^8.0",
  18. "phpdocumentor/type-resolver": "^1.3",
  19. "webmozart/assert": "^1.9.1",
  20. "phpdocumentor/reflection-common": "^2.2",
  21. "ext-filter": "*"
  22. },
  23. "require-dev": {
  24. "mockery/mockery": "~1.3.2"
  25. },
  26. "autoload": {
  27. "psr-4": {
  28. "phpDocumentor\\Reflection\\": "src"
  29. }
  30. },
  31. "autoload-dev": {
  32. "psr-4": {
  33. "phpDocumentor\\Reflection\\": "tests/unit"
  34. }
  35. },
  36. "extra": {
  37. "branch-alias": {
  38. "dev-master": "5.x-dev"
  39. }
  40. }
  41. }