No Description

composer.json 1.4KB

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