composer.json 885 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "phpunit/php-token-stream",
  3. "description": "Wrapper around PHP's tokenizer extension.",
  4. "type": "library",
  5. "keywords": [
  6. "tokenizer"
  7. ],
  8. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  9. "license": "BSD-3-Clause",
  10. "authors": [
  11. {
  12. "name": "Sebastian Bergmann",
  13. "email": "sb@sebastian-bergmann.de",
  14. "role": "lead"
  15. }
  16. ],
  17. "support": {
  18. "issues": "https://github.com/sebastianbergmann/php-token-stream/issues",
  19. "irc": "irc://irc.freenode.net/phpunit"
  20. },
  21. "require": {
  22. "php": ">=5.3.3",
  23. "ext-tokenizer": "*"
  24. },
  25. "autoload": {
  26. "classmap": [
  27. "PHP/"
  28. ]
  29. },
  30. "include-path": [
  31. ""
  32. ],
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "1.2-dev"
  36. }
  37. }
  38. }