composer.json 772 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "takatost/wechat_open_platform",
  3. "description": "Wechat Open Platform SDK",
  4. "keywords": [
  5. "wechat",
  6. "weixin",
  7. "sdk",
  8. "open-platform",
  9. "wechat-open-platform"
  10. ],
  11. "require": {
  12. "php": ">=5.5.0",
  13. "guzzlehttp/guzzle": "~5.0|~6.0",
  14. "symfony/http-foundation": "~2.6|~2.7|~2.8|~3.0",
  15. "overtrue/wechat": "~3.0",
  16. "overtrue/socialite": ">=1.0.7"
  17. },
  18. "require-dev": {
  19. "mockery/mockery": "~0.9",
  20. "phpunit/phpunit": "~4.0"
  21. },
  22. "license": "MIT",
  23. "authors": [
  24. {
  25. "name": "takatost",
  26. "email": "takatost@gmail.com"
  27. }
  28. ],
  29. "autoload": {
  30. "psr-4": {
  31. "WechatOP\\": "src/"
  32. }
  33. }
  34. }