composer.json 812 B

1234567891011121314151617181920212223242526272829303132333435
  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": ">=5.3.3",
  19. "ext-tokenizer": "*"
  20. },
  21. "require-dev": {
  22. "phpunit/phpunit": "~4.2"
  23. },
  24. "autoload": {
  25. "classmap": [
  26. "src/"
  27. ]
  28. },
  29. "extra": {
  30. "branch-alias": {
  31. "dev-master": "1.4-dev"
  32. }
  33. }
  34. }