composer.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  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. "require": {
  13. "php": "^7.0",
  14. "phpdocumentor/reflection-common": "^1.0.0 || ^2.0.0",
  15. "phpdocumentor/type-resolver": "~0.4 || ^1.0.0",
  16. "webmozart/assert": "^1.0"
  17. },
  18. "autoload": {
  19. "psr-4": {"phpDocumentor\\Reflection\\": ["src/"]}
  20. },
  21. "autoload-dev": {
  22. "psr-4": {"phpDocumentor\\Reflection\\": ["tests/unit"]}
  23. },
  24. "require-dev": {
  25. "mockery/mockery": "^1.0",
  26. "phpdocumentor/type-resolver": "0.4.*",
  27. "phpunit/phpunit": "^6.4",
  28. "doctrine/instantiator": "^1.0.5"
  29. },
  30. "extra": {
  31. "branch-alias": {
  32. "dev-master": "4.x-dev"
  33. }
  34. }
  35. }