composer.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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": "8.3.0"
  26. },
  27. "optimize-autoloader": true,
  28. "sort-packages": true
  29. },
  30. "prefer-stable": true,
  31. "require": {
  32. "php": ">=8.3",
  33. "ext-dom": "*",
  34. "ext-libxml": "*",
  35. "ext-xmlwriter": "*",
  36. "nikic/php-parser": "^5.7.0",
  37. "phpunit/php-text-template": "^5.0",
  38. "sebastian/complexity": "^5.0",
  39. "sebastian/environment": "^8.0.3",
  40. "sebastian/lines-of-code": "^4.0",
  41. "sebastian/version": "^6.0",
  42. "theseer/tokenizer": "^2.0.1"
  43. },
  44. "require-dev": {
  45. "phpunit/phpunit": "^12.5.1"
  46. },
  47. "suggest": {
  48. "ext-pcov": "PHP extension that provides line coverage",
  49. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  50. },
  51. "autoload": {
  52. "classmap": [
  53. "src/"
  54. ]
  55. },
  56. "autoload-dev": {
  57. "classmap": [
  58. "tests/"
  59. ]
  60. },
  61. "extra": {
  62. "branch-alias": {
  63. "dev-main": "12.5.x-dev"
  64. }
  65. }
  66. }