composer.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. "psr/cache": "^1 || ^2 || ^3"
  20. },
  21. "require-dev": {
  22. "doctrine/cache": "^1.11 || ^2.0",
  23. "doctrine/coding-standard": "^6.0 || ^8.1",
  24. "phpstan/phpstan": "^0.12.20",
  25. "phpunit/phpunit": "^7.5 || ^8.0 || ^9.1.5",
  26. "symfony/cache": "^4.4 || ^5.2"
  27. },
  28. "config": {
  29. "sort-packages": true
  30. },
  31. "autoload": {
  32. "psr-4": { "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations" }
  33. },
  34. "autoload-dev": {
  35. "psr-4": {
  36. "Doctrine\\Performance\\Common\\Annotations\\": "tests/Doctrine/Performance/Common/Annotations",
  37. "Doctrine\\Tests\\Common\\Annotations\\": "tests/Doctrine/Tests/Common/Annotations"
  38. },
  39. "files": [
  40. "tests/Doctrine/Tests/Common/Annotations/Fixtures/functions.php",
  41. "tests/Doctrine/Tests/Common/Annotations/Fixtures/SingleClassLOC1000.php"
  42. ]
  43. }
  44. }