composer.json 731 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "phpdocumentor/reflection-common",
  3. "keywords": ["phpdoc", "phpDocumentor", "reflection", "static analysis", "FQSEN"],
  4. "homepage": "http://www.phpdoc.org",
  5. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  6. "license": "MIT",
  7. "authors": [
  8. {
  9. "name": "Jaap van Otterdijk",
  10. "email": "opensource@ijaap.nl"
  11. }
  12. ],
  13. "require": {
  14. "php": ">=5.5"
  15. },
  16. "autoload" : {
  17. "psr-4" : {
  18. "phpDocumentor\\Reflection\\": ["src"]
  19. }
  20. },
  21. "require-dev": {
  22. "phpunit/phpunit": "^4.6"
  23. },
  24. "extra": {
  25. "branch-alias": {
  26. "dev-master": "1.0.x-dev"
  27. }
  28. }
  29. }