No Description

composer.json 927B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "phpunit/php-token-stream",
  3. "description": "Wrapper around PHP's tokenizer extension.",
  4. "type": "library",
  5. "keywords": ["tokenizer"],
  6. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  7. "license": "BSD-3-Clause",
  8. "authors": [
  9. {
  10. "name": "Sebastian Bergmann",
  11. "email": "sebastian@phpunit.de"
  12. }
  13. ],
  14. "support": {
  15. "issues": "https://github.com/sebastianbergmann/php-token-stream/issues"
  16. },
  17. "prefer-stable": true,
  18. "require": {
  19. "php": ">=7.1",
  20. "ext-tokenizer": "*"
  21. },
  22. "require-dev": {
  23. "phpunit/phpunit": "^7.0"
  24. },
  25. "config": {
  26. "optimize-autoloader": true,
  27. "sort-packages": true
  28. },
  29. "autoload": {
  30. "classmap": [
  31. "src/"
  32. ]
  33. },
  34. "extra": {
  35. "branch-alias": {
  36. "dev-master": "3.1-dev"
  37. }
  38. }
  39. }