composer.json 1.5 KB

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