composer.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy"
  22. },
  23. "config": {
  24. "platform": {
  25. "php": "7.3.0"
  26. },
  27. "optimize-autoloader": true,
  28. "sort-packages": true
  29. },
  30. "prefer-stable": true,
  31. "require": {
  32. "php": ">=7.3",
  33. "ext-dom": "*",
  34. "ext-libxml": "*",
  35. "ext-xmlwriter": "*",
  36. "nikic/php-parser": "^4.18 || ^5.0",
  37. "phpunit/php-file-iterator": "^3.0.3",
  38. "phpunit/php-text-template": "^2.0.2",
  39. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  40. "sebastian/complexity": "^2.0",
  41. "sebastian/environment": "^5.1.2",
  42. "sebastian/lines-of-code": "^1.0.3",
  43. "sebastian/version": "^3.0.1",
  44. "theseer/tokenizer": "^1.2.0"
  45. },
  46. "require-dev": {
  47. "phpunit/phpunit": "^9.3"
  48. },
  49. "suggest": {
  50. "ext-pcov": "PHP extension that provides line coverage",
  51. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  52. },
  53. "autoload": {
  54. "classmap": [
  55. "src/"
  56. ]
  57. },
  58. "autoload-dev": {
  59. "files": [
  60. "tests/TestCase.php",
  61. "tests/_files/BankAccountTest.php"
  62. ]
  63. },
  64. "extra": {
  65. "branch-alias": {
  66. "dev-master": "9.2-dev"
  67. }
  68. }
  69. }