composer.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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": "sebastian@phpunit.de",
  16. "role": "lead"
  17. }
  18. ],
  19. "support": {
  20. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues"
  21. },
  22. "config": {
  23. "optimize-autoloader": true,
  24. "sort-packages": true
  25. },
  26. "prefer-stable": true,
  27. "require": {
  28. "php": "^7.2",
  29. "ext-dom": "*",
  30. "ext-xmlwriter": "*",
  31. "phpunit/php-file-iterator": "^2.0.2",
  32. "phpunit/php-token-stream": "^3.1.1",
  33. "phpunit/php-text-template": "^1.2.1",
  34. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  35. "sebastian/environment": "^4.2.2",
  36. "sebastian/version": "^2.0.1",
  37. "theseer/tokenizer": "^1.1.3"
  38. },
  39. "require-dev": {
  40. "phpunit/phpunit": "^8.2.2"
  41. },
  42. "suggest": {
  43. "ext-xdebug": "^2.7.2"
  44. },
  45. "autoload": {
  46. "classmap": [
  47. "src/"
  48. ]
  49. },
  50. "autoload-dev": {
  51. "files": [
  52. "tests/TestCase.php",
  53. "tests/_files/BankAccountTest.php"
  54. ]
  55. },
  56. "extra": {
  57. "branch-alias": {
  58. "dev-master": "7.0-dev"
  59. }
  60. }
  61. }