composer.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "phpunit/php-code-coverage",
  3. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  4. "type": "library",
  5. "keywords": [
  6. "coverage",
  7. "testing",
  8. "xunit"
  9. ],
  10. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  11. "license": "BSD-3-Clause",
  12. "authors": [
  13. {
  14. "name": "Sebastian Bergmann",
  15. "email": "sb@sebastian-bergmann.de",
  16. "role": "lead"
  17. }
  18. ],
  19. "support": {
  20. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  21. "irc": "irc://irc.freenode.net/phpunit"
  22. },
  23. "require": {
  24. "php": ">=5.3.3",
  25. "phpunit/php-file-iterator": ">=1.3.0@stable",
  26. "phpunit/php-token-stream": ">=1.1.3,<1.3.0@stable",
  27. "phpunit/php-text-template": ">=1.2.0@stable"
  28. },
  29. "require-dev": {
  30. "phpunit/phpunit": "3.7.*@dev"
  31. },
  32. "suggest": {
  33. "ext-dom": "*",
  34. "ext-xdebug": ">=2.0.5"
  35. },
  36. "autoload": {
  37. "classmap": [
  38. "PHP/"
  39. ]
  40. },
  41. "extra": {
  42. "branch-alias": {
  43. "dev-master": "1.2.x-dev"
  44. }
  45. },
  46. "include-path": [
  47. ""
  48. ]
  49. }