composer.json 2.3 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. },
  22. "prefer-stable": true,
  23. "require": {
  24. "php": "^7.1",
  25. "ext-dom": "*",
  26. "ext-json": "*",
  27. "ext-libxml": "*",
  28. "ext-mbstring": "*",
  29. "ext-xml": "*",
  30. "doctrine/instantiator": "^1.1",
  31. "myclabs/deep-copy": "^1.7",
  32. "phar-io/manifest": "^1.0.2",
  33. "phar-io/version": "^2.0",
  34. "phpspec/prophecy": "^1.7",
  35. "phpunit/php-code-coverage": "^6.0.7",
  36. "phpunit/php-file-iterator": "^2.0.1",
  37. "phpunit/php-text-template": "^1.2.1",
  38. "phpunit/php-timer": "^2.1",
  39. "sebastian/comparator": "^3.0",
  40. "sebastian/diff": "^3.0",
  41. "sebastian/environment": "^4.0",
  42. "sebastian/exporter": "^3.1",
  43. "sebastian/global-state": "^2.0",
  44. "sebastian/object-enumerator": "^3.0.3",
  45. "sebastian/resource-operations": "^2.0",
  46. "sebastian/version": "^2.0.1"
  47. },
  48. "require-dev": {
  49. "ext-PDO": "*"
  50. },
  51. "conflict": {
  52. "phpunit/phpunit-mock-objects": "*"
  53. },
  54. "config": {
  55. "platform": {
  56. "php": "7.1.0"
  57. },
  58. "optimize-autoloader": true,
  59. "sort-packages": true
  60. },
  61. "suggest": {
  62. "phpunit/php-invoker": "^2.0",
  63. "ext-soap": "*",
  64. "ext-xdebug": "*"
  65. },
  66. "bin": [
  67. "phpunit"
  68. ],
  69. "autoload": {
  70. "classmap": [
  71. "src/"
  72. ]
  73. },
  74. "autoload-dev": {
  75. "classmap": [
  76. "tests/"
  77. ],
  78. "files": [
  79. "src/Framework/Assert/Functions.php",
  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": "7.5-dev"
  88. }
  89. }
  90. }