composer.json 1.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "phpspec/prophecy",
  3. "description": "Highly opinionated mocking framework for PHP 5.3+",
  4. "keywords": ["Mock", "Stub", "Dummy", "Double", "Fake", "Spy"],
  5. "homepage": "https://github.com/phpspec/prophecy",
  6. "type": "library",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Konstantin Kudryashov",
  11. "email": "ever.zet@gmail.com",
  12. "homepage": "http://everzet.com"
  13. },
  14. {
  15. "name": "Marcello Duarte",
  16. "email": "marcello.duarte@gmail.com"
  17. }
  18. ],
  19. "require": {
  20. "php": "^5.3|^7.0",
  21. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  22. "sebastian/comparator": "^1.1|^2.0|^3.0",
  23. "doctrine/instantiator": "^1.0.2",
  24. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  25. },
  26. "require-dev": {
  27. "phpspec/phpspec": "^2.5|^3.2",
  28. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5"
  29. },
  30. "autoload": {
  31. "psr-0": {
  32. "Prophecy\\": "src/"
  33. }
  34. },
  35. "autoload-dev": {
  36. "psr-4": {
  37. "Fixtures\\Prophecy\\": "fixtures"
  38. }
  39. },
  40. "extra": {
  41. "branch-alias": {
  42. "dev-master": "1.7.x-dev"
  43. }
  44. }
  45. }