composer.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. "require": {
  23. "php": ">=5.3.3",
  24. "phpunit/php-file-iterator": "~1.4",
  25. "phpunit/php-text-template": "~1.2",
  26. "phpunit/php-code-coverage": "~2.1",
  27. "phpunit/php-timer": "^1.0.6",
  28. "phpunit/phpunit-mock-objects": "~2.3",
  29. "phpspec/prophecy": "^1.3.1",
  30. "symfony/yaml": "~2.1|~3.0",
  31. "sebastian/comparator": "~1.2.2",
  32. "sebastian/diff": "~1.2",
  33. "sebastian/environment": "~1.3",
  34. "sebastian/exporter": "~1.2",
  35. "sebastian/global-state": "~1.0",
  36. "sebastian/version": "~1.0",
  37. "ext-dom": "*",
  38. "ext-json": "*",
  39. "ext-pcre": "*",
  40. "ext-reflection": "*",
  41. "ext-spl": "*"
  42. },
  43. "config": {
  44. "platform": {
  45. "php": "5.3.3"
  46. }
  47. },
  48. "suggest": {
  49. "phpunit/php-invoker": "~1.1"
  50. },
  51. "bin": [
  52. "phpunit"
  53. ],
  54. "autoload": {
  55. "classmap": [
  56. "src/"
  57. ]
  58. },
  59. "autoload-dev": {
  60. "classmap": [
  61. "tests/"
  62. ],
  63. "files": [
  64. "src/Framework/Assert/Functions.php",
  65. "tests/_files/CoveredFunction.php"
  66. ]
  67. },
  68. "extra": {
  69. "branch-alias": {
  70. "dev-master": "4.8.x-dev"
  71. }
  72. }
  73. }