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