You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
816 B

3 years ago
  1. {
  2. "name": "nikic/php-parser",
  3. "type": "library",
  4. "description": "A PHP parser written in PHP",
  5. "keywords": [
  6. "php",
  7. "parser"
  8. ],
  9. "license": "BSD-3-Clause",
  10. "authors": [
  11. {
  12. "name": "Nikita Popov"
  13. }
  14. ],
  15. "require": {
  16. "php": ">=7.0",
  17. "ext-tokenizer": "*"
  18. },
  19. "require-dev": {
  20. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0",
  21. "ircmaxell/php-yacc": "^0.0.7"
  22. },
  23. "extra": {
  24. "branch-alias": {
  25. "dev-master": "4.9-dev"
  26. }
  27. },
  28. "autoload": {
  29. "psr-4": {
  30. "PhpParser\\": "lib/PhpParser"
  31. }
  32. },
  33. "autoload-dev": {
  34. "psr-4": {
  35. "PhpParser\\": "test/PhpParser/"
  36. }
  37. },
  38. "bin": [
  39. "bin/php-parse"
  40. ]
  41. }