composer.json 991 B

12345678910111213141516171819202122232425262728293031323334
  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",
  15. "phpdocumentor/type-resolver": "^0.4.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. "phpunit/phpunit": "^6.4",
  27. "doctrine/instantiator": "~1.0.5"
  28. },
  29. "extra": {
  30. "branch-alias": {
  31. "dev-master": "4.x-dev"
  32. }
  33. }
  34. }