composer.json 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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": "^5.6 || ^7.0",
  25. "phpunit/php-file-iterator": "~1.4",
  26. "phpunit/php-text-template": "~1.2",
  27. "phpunit/php-code-coverage": "^4.0.4",
  28. "phpunit/php-timer": "^1.0.6",
  29. "phpunit/phpunit-mock-objects": "^3.2",
  30. "phpspec/prophecy": "^1.6.2",
  31. "symfony/yaml": "~2.1|~3.0|~4.0",
  32. "sebastian/comparator": "^1.2.4",
  33. "sebastian/diff": "^1.4.3",
  34. "sebastian/environment": "^1.3.4 || ^2.0",
  35. "sebastian/exporter": "~2.0",
  36. "sebastian/global-state": "^1.1",
  37. "sebastian/object-enumerator": "~2.0",
  38. "sebastian/resource-operations": "~1.0",
  39. "sebastian/version": "^1.0.6|^2.0.1",
  40. "myclabs/deep-copy": "~1.3",
  41. "ext-dom": "*",
  42. "ext-json": "*",
  43. "ext-mbstring": "*",
  44. "ext-xml": "*",
  45. "ext-libxml": "*"
  46. },
  47. "require-dev": {
  48. "ext-PDO": "*"
  49. },
  50. "conflict": {
  51. "phpdocumentor/reflection-docblock": "3.0.2"
  52. },
  53. "config": {
  54. "platform": {
  55. "php": "5.6.0"
  56. },
  57. "optimize-autoloader": true,
  58. "sort-packages": true
  59. },
  60. "suggest": {
  61. "phpunit/php-invoker": "~1.1",
  62. "ext-xdebug": "*"
  63. },
  64. "bin": [
  65. "phpunit"
  66. ],
  67. "autoload": {
  68. "classmap": [
  69. "src/"
  70. ]
  71. },
  72. "autoload-dev": {
  73. "classmap": [
  74. "tests/"
  75. ],
  76. "files": [
  77. "src/Framework/Assert/Functions.php",
  78. "tests/_files/CoveredFunction.php"
  79. ]
  80. },
  81. "extra": {
  82. "branch-alias": {
  83. "dev-master": "5.7.x-dev"
  84. }
  85. }
  86. }