composer.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. "psalm/phar": "^4.8"
  26. },
  27. "autoload": {
  28. "psr-4": {
  29. "phpDocumentor\\Reflection\\": "src"
  30. }
  31. },
  32. "autoload-dev": {
  33. "psr-4": {
  34. "phpDocumentor\\Reflection\\": ["tests/unit", "tests/integration"]
  35. }
  36. },
  37. "extra": {
  38. "branch-alias": {
  39. "dev-master": "5.x-dev"
  40. }
  41. }
  42. }