composer.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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.6 || ^7.0",
  25. "ext-dom": "*",
  26. "ext-xmlwriter": "*",
  27. "phpunit/php-file-iterator": "^1.3",
  28. "phpunit/php-token-stream": "^1.4.2 || ^2.0",
  29. "phpunit/php-text-template": "^1.2",
  30. "sebastian/code-unit-reverse-lookup": "^1.0",
  31. "sebastian/environment": "^1.3.2 || ^2.0",
  32. "sebastian/version": "^1.0 || ^2.0"
  33. },
  34. "require-dev": {
  35. "phpunit/phpunit": "^5.7",
  36. "ext-xdebug": "^2.1.4"
  37. },
  38. "suggest": {
  39. "ext-xdebug": "^2.5.1"
  40. },
  41. "autoload": {
  42. "classmap": [
  43. "src/"
  44. ]
  45. },
  46. "extra": {
  47. "branch-alias": {
  48. "dev-master": "4.0.x-dev"
  49. }
  50. }
  51. }