composer.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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.*",
  38. "psr/cache": "^1 || ^2 || ^3"
  39. },
  40. "require-dev": {
  41. "doctrine/cache": "^1.11 || ^2.0",
  42. "doctrine/coding-standard": "^6.0 || ^8.1",
  43. "phpstan/phpstan": "^1.4.10 || ^1.8.0",
  44. "phpunit/phpunit": "^7.5 || ^8.0 || ^9.1.5",
  45. "symfony/cache": "^4.4 || ^5.2",
  46. "vimeo/psalm": "^4.10"
  47. },
  48. "autoload": {
  49. "psr-4": {
  50. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  51. }
  52. },
  53. "autoload-dev": {
  54. "psr-4": {
  55. "Doctrine\\Performance\\Common\\Annotations\\": "tests/Doctrine/Performance/Common/Annotations",
  56. "Doctrine\\Tests\\Common\\Annotations\\": "tests/Doctrine/Tests/Common/Annotations"
  57. },
  58. "files": [
  59. "tests/Doctrine/Tests/Common/Annotations/Fixtures/functions.php",
  60. "tests/Doctrine/Tests/Common/Annotations/Fixtures/SingleClassLOC1000.php"
  61. ]
  62. },
  63. "config": {
  64. "allow-plugins": {
  65. "dealerdirect/phpcodesniffer-composer-installer": true
  66. },
  67. "sort-packages": true
  68. }
  69. }