composer.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "doctrine/annotations",
  3. "type": "library",
  4. "description": "Docblock Annotations Parser",
  5. "keywords": ["annotations", "docblock", "parser"],
  6. "homepage": "http://www.doctrine-project.org",
  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. ],
  15. "require": {
  16. "php": "^7.1 || ^8.0",
  17. "ext-tokenizer": "*",
  18. "doctrine/lexer": "1.*"
  19. },
  20. "require-dev": {
  21. "doctrine/cache": "1.*",
  22. "phpunit/phpunit": "^7.5"
  23. },
  24. "config": {
  25. "sort-packages": true
  26. },
  27. "autoload": {
  28. "psr-4": { "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations" }
  29. },
  30. "autoload-dev": {
  31. "psr-4": {
  32. "Doctrine\\Performance\\Common\\Annotations\\": "tests/Doctrine/Performance/Common/Annotations",
  33. "Doctrine\\Tests\\Common\\Annotations\\": "tests/Doctrine/Tests/Common/Annotations"
  34. },
  35. "files": [
  36. "tests/Doctrine/Tests/Common/Annotations/Fixtures/SingleClassLOC1000.php"
  37. ]
  38. },
  39. "extra": {
  40. "branch-alias": {
  41. "dev-master": "1.9.x-dev"
  42. }
  43. }
  44. }