composer.json 1.8 KB

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