composer.json 859 B

1234567891011121314151617181920212223242526272829
  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": ">=5.5",
  14. "phpdocumentor/reflection-common": "^1.0@dev",
  15. "phpdocumentor/type-resolver": "^0.2.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": "^0.9.4",
  26. "phpunit/phpunit": "^4.4"
  27. }
  28. }