composer.json 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "mockery/mockery",
  3. "description": "Mockery is a simple yet flexible PHP mock object framework",
  4. "scripts": {
  5. "docs": "phpdoc -d library -t docs/api"
  6. },
  7. "keywords": [
  8. "bdd",
  9. "library",
  10. "mock",
  11. "mock objects",
  12. "mockery",
  13. "stub",
  14. "tdd",
  15. "test",
  16. "test double",
  17. "testing"
  18. ],
  19. "homepage": "https://github.com/mockery/mockery",
  20. "license": "BSD-3-Clause",
  21. "authors": [
  22. {
  23. "name": "Pádraic Brady",
  24. "email": "padraic.brady@gmail.com",
  25. "homepage": "http://blog.astrumfutura.com"
  26. },
  27. {
  28. "name": "Dave Marshall",
  29. "email": "dave.marshall@atstsolutions.co.uk",
  30. "homepage": "http://davedevelopment.co.uk"
  31. }
  32. ],
  33. "require": {
  34. "php": ">=5.6.0",
  35. "lib-pcre": ">=7.0",
  36. "hamcrest/hamcrest-php": "~2.0"
  37. },
  38. "require-dev": {
  39. "phpunit/phpunit": "~5.7.10|~6.5",
  40. "phpdocumentor/phpdocumentor": "^2.9"
  41. },
  42. "autoload": {
  43. "psr-0": {
  44. "Mockery": "library/"
  45. }
  46. },
  47. "autoload-dev": {
  48. "psr-4": {
  49. "test\\": "tests/"
  50. }
  51. },
  52. "extra": {
  53. "branch-alias": {
  54. "dev-master": "1.0.x-dev"
  55. }
  56. }
  57. }