composer.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "doctrine/reflection",
  3. "type": "library",
  4. "description": "Doctrine Reflection component",
  5. "keywords": ["reflection"],
  6. "homepage": "https://www.doctrine-project.org/projects/reflection.html",
  7. "license": "MIT",
  8. "authors": [
  9. {"name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com"},
  10. {"name": "Roman Borschel", "email": "roman@code-factory.org"},
  11. {"name": "Benjamin Eberlei", "email": "kontakt@beberlei.de"},
  12. {"name": "Jonathan Wage", "email": "jonwage@gmail.com"},
  13. {"name": "Johannes Schmitt", "email": "schmittjoh@gmail.com"},
  14. {"name": "Marco Pivetta", "email": "ocramius@gmail.com"}
  15. ],
  16. "require": {
  17. "php": "^7.1",
  18. "ext-tokenizer": "*",
  19. "doctrine/annotations": "^1.0"
  20. },
  21. "require-dev": {
  22. "phpstan/phpstan": "^0.9.2",
  23. "phpstan/phpstan-phpunit": "^0.9.4",
  24. "phpunit/phpunit": "^7.0",
  25. "doctrine/coding-standard": "^4.0",
  26. "doctrine/common": "^2.8",
  27. "squizlabs/php_codesniffer": "^3.0"
  28. },
  29. "autoload": {
  30. "psr-4": {
  31. "Doctrine\\Common\\": "lib/Doctrine/Common"
  32. }
  33. },
  34. "autoload-dev": {
  35. "psr-4": {
  36. "Doctrine\\Tests\\": "tests/Doctrine/Tests"
  37. }
  38. },
  39. "extra": {
  40. "branch-alias": {
  41. "dev-master": "1.0.x-dev"
  42. }
  43. }
  44. }