composer.json 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {
  2. "name": "doctrine/annotations",
  3. "description": "Docblock Annotations Parser",
  4. "license": "MIT",
  5. "type": "library",
  6. "keywords": [
  7. "annotations",
  8. "docblock",
  9. "parser"
  10. ],
  11. "authors": [
  12. {
  13. "name": "Guilherme Blanco",
  14. "email": "guilhermeblanco@gmail.com"
  15. },
  16. {
  17. "name": "Roman Borschel",
  18. "email": "roman@code-factory.org"
  19. },
  20. {
  21. "name": "Benjamin Eberlei",
  22. "email": "kontakt@beberlei.de"
  23. },
  24. {
  25. "name": "Jonathan Wage",
  26. "email": "jonwage@gmail.com"
  27. },
  28. {
  29. "name": "Johannes Schmitt",
  30. "email": "schmittjoh@gmail.com"
  31. }
  32. ],
  33. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  34. "require": {
  35. "php": "^7.1 || ^8.0",
  36. "ext-tokenizer": "*",
  37. "doctrine/lexer": "^1 || ^2",
  38. "psr/cache": "^1 || ^2 || ^3"
  39. },
  40. "require-dev": {
  41. "doctrine/cache": "^1.11 || ^2.0",
  42. "doctrine/coding-standard": "^9 || ^10",
  43. "phpstan/phpstan": "~1.4.10 || ^1.8.0",
  44. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  45. "symfony/cache": "^4.4 || ^5.4 || ^6",
  46. "vimeo/psalm": "^4.10"
  47. },
  48. "suggest": {
  49. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  50. },
  51. "autoload": {
  52. "psr-4": {
  53. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  54. }
  55. },
  56. "autoload-dev": {
  57. "psr-4": {
  58. "Doctrine\\Performance\\Common\\Annotations\\": "tests/Doctrine/Performance/Common/Annotations",
  59. "Doctrine\\Tests\\Common\\Annotations\\": "tests/Doctrine/Tests/Common/Annotations"
  60. },
  61. "files": [
  62. "tests/Doctrine/Tests/Common/Annotations/Fixtures/functions.php",
  63. "tests/Doctrine/Tests/Common/Annotations/Fixtures/SingleClassLOC1000.php"
  64. ]
  65. },
  66. "config": {
  67. "allow-plugins": {
  68. "dealerdirect/phpcodesniffer-composer-installer": true
  69. },
  70. "sort-packages": true
  71. }
  72. }