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": ">=7.3",
  26. "ext-dom": "*",
  27. "ext-json": "*",
  28. "ext-libxml": "*",
  29. "ext-mbstring": "*",
  30. "ext-xml": "*",
  31. "ext-xmlwriter": "*",
  32. "doctrine/instantiator": "^1.3.1 || ^2",
  33. "myclabs/deep-copy": "^1.10.1",
  34. "phar-io/manifest": "^2.0.3",
  35. "phar-io/version": "^3.0.2",
  36. "phpunit/php-code-coverage": "^9.2.13",
  37. "phpunit/php-file-iterator": "^3.0.5",
  38. "phpunit/php-invoker": "^3.1.1",
  39. "phpunit/php-text-template": "^2.0.3",
  40. "phpunit/php-timer": "^5.0.2",
  41. "sebastian/cli-parser": "^1.0.1",
  42. "sebastian/code-unit": "^1.0.6",
  43. "sebastian/comparator": "^4.0.8",
  44. "sebastian/diff": "^4.0.3",
  45. "sebastian/environment": "^5.1.3",
  46. "sebastian/exporter": "^4.0.5",
  47. "sebastian/global-state": "^5.0.1",
  48. "sebastian/object-enumerator": "^4.0.3",
  49. "sebastian/resource-operations": "^3.0.3",
  50. "sebastian/type": "^3.2",
  51. "sebastian/version": "^3.0.2"
  52. },
  53. "config": {
  54. "platform": {
  55. "php": "7.3.0"
  56. },
  57. "optimize-autoloader": true,
  58. "sort-packages": true
  59. },
  60. "suggest": {
  61. "ext-soap": "To be able to generate mocks based on WSDL files",
  62. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  63. },
  64. "bin": [
  65. "phpunit"
  66. ],
  67. "autoload": {
  68. "classmap": [
  69. "src/"
  70. ],
  71. "files": [
  72. "src/Framework/Assert/Functions.php"
  73. ]
  74. },
  75. "autoload-dev": {
  76. "classmap": [
  77. "tests/"
  78. ],
  79. "files": [
  80. "tests/_files/CoverageNamespacedFunctionTest.php",
  81. "tests/_files/CoveredFunction.php",
  82. "tests/_files/NamespaceCoveredFunction.php"
  83. ]
  84. },
  85. "extra": {
  86. "branch-alias": {
  87. "dev-master": "9.6-dev"
  88. }
  89. }
  90. }