composer.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "doctrine/lexer",
  3. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  4. "license": "MIT",
  5. "type": "library",
  6. "keywords": [
  7. "php",
  8. "parser",
  9. "lexer",
  10. "annotations",
  11. "docblock"
  12. ],
  13. "authors": [
  14. {
  15. "name": "Guilherme Blanco",
  16. "email": "guilhermeblanco@gmail.com"
  17. },
  18. {
  19. "name": "Roman Borschel",
  20. "email": "roman@code-factory.org"
  21. },
  22. {
  23. "name": "Johannes Schmitt",
  24. "email": "schmittjoh@gmail.com"
  25. }
  26. ],
  27. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  28. "require": {
  29. "php": "^8.1"
  30. },
  31. "require-dev": {
  32. "doctrine/coding-standard": "^12",
  33. "phpstan/phpstan": "^1.10",
  34. "phpunit/phpunit": "^10.5",
  35. "psalm/plugin-phpunit": "^0.18.3",
  36. "vimeo/psalm": "^5.21"
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Doctrine\\Common\\Lexer\\": "src"
  41. }
  42. },
  43. "autoload-dev": {
  44. "psr-4": {
  45. "Doctrine\\Tests\\Common\\Lexer\\": "tests"
  46. }
  47. },
  48. "config": {
  49. "allow-plugins": {
  50. "composer/package-versions-deprecated": true,
  51. "dealerdirect/phpcodesniffer-composer-installer": true
  52. },
  53. "sort-packages": true
  54. }
  55. }