composer.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "doctrine/lexer",
  3. "type": "library",
  4. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  5. "keywords": [
  6. "php",
  7. "parser",
  8. "lexer",
  9. "annotations",
  10. "docblock"
  11. ],
  12. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  13. "license": "MIT",
  14. "authors": [
  15. {"name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com"},
  16. {"name": "Roman Borschel", "email": "roman@code-factory.org"},
  17. {"name": "Johannes Schmitt", "email": "schmittjoh@gmail.com"}
  18. ],
  19. "require": {
  20. "php": "^7.2"
  21. },
  22. "require-dev": {
  23. "doctrine/coding-standard": "^6.0",
  24. "phpstan/phpstan": "^0.11.8",
  25. "phpunit/phpunit": "^8.2"
  26. },
  27. "autoload": {
  28. "psr-4": { "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer" }
  29. },
  30. "autoload-dev": {
  31. "psr-4": { "Doctrine\\Tests\\": "tests/Doctrine" }
  32. },
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "1.2.x-dev"
  36. }
  37. },
  38. "config": {
  39. "sort-packages": true
  40. }
  41. }