composer.json 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. {
  2. "name": "phpunit/phpunit",
  3. "description": "The PHP Unit Testing framework.",
  4. "type": "library",
  5. "keywords": [
  6. "phpunit",
  7. "xunit",
  8. "testing"
  9. ],
  10. "homepage": "https://phpunit.de/",
  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/phpunit/issues",
  21. "security": "https://github.com/sebastianbergmann/phpunit/security/policy"
  22. },
  23. "prefer-stable": true,
  24. "require": {
  25. "php": ">=8.1",
  26. "ext-dom": "*",
  27. "ext-json": "*",
  28. "ext-libxml": "*",
  29. "ext-mbstring": "*",
  30. "ext-xml": "*",
  31. "ext-xmlwriter": "*",
  32. "myclabs/deep-copy": "^1.10.1",
  33. "phar-io/manifest": "^2.0.3",
  34. "phar-io/version": "^3.0.2",
  35. "phpunit/php-code-coverage": "^10.1.5",
  36. "phpunit/php-file-iterator": "^4.0",
  37. "phpunit/php-invoker": "^4.0",
  38. "phpunit/php-text-template": "^3.0",
  39. "phpunit/php-timer": "^6.0",
  40. "sebastian/cli-parser": "^2.0",
  41. "sebastian/code-unit": "^2.0",
  42. "sebastian/comparator": "^5.0",
  43. "sebastian/diff": "^5.0",
  44. "sebastian/environment": "^6.0",
  45. "sebastian/exporter": "^5.1",
  46. "sebastian/global-state": "^6.0.1",
  47. "sebastian/object-enumerator": "^5.0",
  48. "sebastian/recursion-context": "^5.0",
  49. "sebastian/type": "^4.0",
  50. "sebastian/version": "^4.0"
  51. },
  52. "config": {
  53. "platform": {
  54. "php": "8.1.0"
  55. },
  56. "optimize-autoloader": true,
  57. "sort-packages": true
  58. },
  59. "suggest": {
  60. "ext-soap": "To be able to generate mocks based on WSDL files"
  61. },
  62. "bin": [
  63. "phpunit"
  64. ],
  65. "autoload": {
  66. "classmap": [
  67. "src/"
  68. ],
  69. "files": [
  70. "src/Framework/Assert/Functions.php"
  71. ]
  72. },
  73. "autoload-dev": {
  74. "classmap": [
  75. "tests/"
  76. ],
  77. "files": [
  78. "tests/_files/CoverageNamespacedFunctionTest.php",
  79. "tests/_files/CoveredFunction.php",
  80. "tests/_files/Generator.php",
  81. "tests/_files/NamespaceCoveredFunction.php",
  82. "tests/end-to-end/code-coverage/ignore-function-using-attribute/src/CoveredFunction.php"
  83. ]
  84. },
  85. "extra": {
  86. "branch-alias": {
  87. "dev-main": "10.5-dev"
  88. }
  89. }
  90. }