composer.json 678 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "easywechat/core",
  3. "description": "core module for EasyWeChat SDK.",
  4. "keywords": ["wechat", "weixin", "SDK", "easywechat"],
  5. "license": "MIT",
  6. "authors": [
  7. {
  8. "name": "overtrue",
  9. "email": "anzhengchao@gmail.com"
  10. }
  11. ],
  12. "autoload": {
  13. "psr-4": {
  14. "EasyWeChat\\Core\\": "."
  15. }
  16. },
  17. "minimum-stability":"dev",
  18. "require-dev": {
  19. "phpunit/phpunit": "~4.0",
  20. "mockery/mockery": "^1.0@dev"
  21. },
  22. "require": {
  23. "php":">=5.5.0",
  24. "doctrine/cache": "~1.4",
  25. "easywechat/support" : "dev-master",
  26. "guzzlehttp/guzzle": "~6.1"
  27. }
  28. }