composer.json 901B

123456789101112131415161718192021222324252627282930313233343536373839
  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. "require": {
  18. "php": "^7.0",
  19. "ext-tokenizer": "*"
  20. },
  21. "require-dev": {
  22. "phpunit/phpunit": "^6.2.4"
  23. },
  24. "config": {
  25. "optimize-autoloader": true,
  26. "sort-packages": true
  27. },
  28. "autoload": {
  29. "classmap": [
  30. "src/"
  31. ]
  32. },
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "2.0-dev"
  36. }
  37. }
  38. }