composer.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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": "sb@sebastian-bergmann.de",
  15. "role": "lead"
  16. }
  17. ],
  18. "support": {
  19. "issues": "https://github.com/sebastianbergmann/phpunit-mock-objects/issues",
  20. "irc": "irc://irc.freenode.net/phpunit"
  21. },
  22. "require": {
  23. "php": ">=5.3.3",
  24. "phpunit/php-text-template": "~1.2",
  25. "doctrine/instantiator": "^1.0.2",
  26. "sebastian/exporter": "~1.2"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "~4.4"
  30. },
  31. "suggest": {
  32. "ext-soap": "*"
  33. },
  34. "autoload": {
  35. "classmap": [
  36. "src/"
  37. ]
  38. },
  39. "autoload-dev": {
  40. "classmap": [
  41. "tests/_fixture/"
  42. ]
  43. },
  44. "extra": {
  45. "branch-alias": {
  46. "dev-master": "2.3.x-dev"
  47. }
  48. }
  49. }