composer.json 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "phpunit/phpunit-mock-objects",
  3. "description": "Mock Object library for PHPUnit",
  4. "type": "library",
  5. "keywords": [
  6. "xunit",
  7. "mock"
  8. ],
  9. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  10. "license": "BSD-3-Clause",
  11. "authors": [
  12. {
  13. "name": "Sebastian Bergmann",
  14. "email": "sebastian@phpunit.de",
  15. "role": "lead"
  16. }
  17. ],
  18. "support": {
  19. "issues": "https://github.com/sebastianbergmann/phpunit-mock-objects/issues"
  20. },
  21. "prefer-stable": true,
  22. "require": {
  23. "php": "^7.0",
  24. "phpunit/php-text-template": "^1.2.1",
  25. "doctrine/instantiator": "^1.0.5",
  26. "sebastian/exporter": "^3.1"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^6.5"
  30. },
  31. "conflict": {
  32. "phpunit/phpunit": "<6.0"
  33. },
  34. "config": {
  35. "optimize-autoloader": true,
  36. "sort-packages": true
  37. },
  38. "suggest": {
  39. "ext-soap": "*"
  40. },
  41. "autoload": {
  42. "classmap": [
  43. "src/"
  44. ]
  45. },
  46. "autoload-dev": {
  47. "classmap": [
  48. "tests/_fixture/"
  49. ]
  50. },
  51. "extra": {
  52. "branch-alias": {
  53. "dev-master": "5.0.x-dev"
  54. }
  55. }
  56. }