composer.json 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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.12.1",
  33. "phar-io/manifest": "^2.0.4",
  34. "phar-io/version": "^3.2.1",
  35. "phpunit/php-code-coverage": "^10.1.16",
  36. "phpunit/php-file-iterator": "^4.1.0",
  37. "phpunit/php-invoker": "^4.0.0",
  38. "phpunit/php-text-template": "^3.0.1",
  39. "phpunit/php-timer": "^6.0.0",
  40. "sebastian/cli-parser": "^2.0.1",
  41. "sebastian/code-unit": "^2.0.0",
  42. "sebastian/comparator": "^5.0.3",
  43. "sebastian/diff": "^5.1.1",
  44. "sebastian/environment": "^6.1.0",
  45. "sebastian/exporter": "^5.1.2",
  46. "sebastian/global-state": "^6.0.2",
  47. "sebastian/object-enumerator": "^5.0.0",
  48. "sebastian/recursion-context": "^5.0.0",
  49. "sebastian/type": "^4.0.0",
  50. "sebastian/version": "^4.0.1"
  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/_files"
  76. ],
  77. "files": [
  78. "tests/unit/Event/AbstractEventTestCase.php",
  79. "tests/unit/Framework/MockObject/TestDoubleTestCase.php",
  80. "tests/unit/Metadata/Parser/AnnotationParserTestCase.php",
  81. "tests/unit/Metadata/Parser/AttributeParserTestCase.php",
  82. "tests/_files/CoverageNamespacedFunctionTest.php",
  83. "tests/_files/CoveredFunction.php",
  84. "tests/_files/Generator.php",
  85. "tests/_files/NamespaceCoveredFunction.php",
  86. "tests/end-to-end/code-coverage/ignore-function-using-attribute/src/CoveredFunction.php"
  87. ]
  88. },
  89. "extra": {
  90. "branch-alias": {
  91. "dev-main": "10.5-dev"
  92. }
  93. }
  94. }