composer.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "overtrue/wechat",
  3. "description": "微信SDK",
  4. "keywords": [
  5. "wechat",
  6. "weixin",
  7. "weixin-sdk",
  8. "sdk"
  9. ],
  10. "license": "MIT",
  11. "authors": [
  12. {
  13. "name": "overtrue",
  14. "email": "anzhengchao@gmail.com"
  15. }
  16. ],
  17. "require": {
  18. "php": ">=7.0",
  19. "ext-fileinfo": "*",
  20. "ext-openssl": "*",
  21. "ext-simplexml": "*",
  22. "easywechat-composer/easywechat-composer": "^1.1",
  23. "guzzlehttp/guzzle": "^6.2",
  24. "monolog/monolog": "^1.22",
  25. "overtrue/socialite": "~2.0",
  26. "pimple/pimple": "^3.0",
  27. "symfony/cache": "^3.3|^4.0",
  28. "symfony/http-foundation": "^2.7|^3.0|^4.0",
  29. "symfony/psr-http-message-bridge": "^0.3|^1.0"
  30. },
  31. "require-dev": {
  32. "phpunit/phpunit": "~6.0",
  33. "overtrue/phplint": "dev-master",
  34. "mockery/mockery": "^1.0",
  35. "mikey179/vfsStream": "^1.6"
  36. },
  37. "autoload": {
  38. "psr-4": {
  39. "EasyWeChat\\": "src/"
  40. },
  41. "files": [
  42. "src/Kernel/Support/Helpers.php",
  43. "src/Kernel/Helpers.php"
  44. ]
  45. },
  46. "autoload-dev": {
  47. "psr-4": {
  48. "EasyWeChat\\Tests\\": "tests/"
  49. }
  50. }
  51. }