composer.json 844 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "phpdocumentor/reflection",
  3. "description": "Reflection library to do Static Analysis for PHP Projects",
  4. "keywords": ["phpdoc", "phpDocumentor", "reflection", "static analysis"],
  5. "homepage": "http://www.phpdoc.org",
  6. "license": "MIT",
  7. "autoload": {
  8. "psr-0": {
  9. "phpDocumentor": ["src/", "tests/unit/", "tests/mocks/"]
  10. }
  11. },
  12. "require": {
  13. "php": ">=5.3.3",
  14. "psr/log": "~1.0",
  15. "nikic/php-parser": "^1.0",
  16. "phpdocumentor/reflection-docblock": "~2.0"
  17. },
  18. "suggests": {
  19. "symfony/event-dispatcher": "~2.1"
  20. },
  21. "require-dev": {
  22. "behat/behat": "~2.4",
  23. "phpunit/phpunit": "~4.0",
  24. "mockery/mockery": "~0.8"
  25. },
  26. "extra": {
  27. "branch-alias": {
  28. "dev-master": "1.0.x-dev"
  29. }
  30. }
  31. }