Sin descripción

composer.json 1.1KB

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,>=1.0.1"
  26. },
  27. "require-dev": {
  28. "phpunit/phpunit": "~4.3"
  29. },
  30. "suggest": {
  31. "ext-soap": "*"
  32. },
  33. "autoload": {
  34. "classmap": [
  35. "src/"
  36. ]
  37. },
  38. "autoload-dev": {
  39. "classmap": [
  40. "tests/_fixture/"
  41. ]
  42. },
  43. "extra": {
  44. "branch-alias": {
  45. "dev-master": "2.3.x-dev"
  46. }
  47. }
  48. }