composer.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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":">=5.5.0",
  19. "ext-openssl": "*",
  20. "pimple/pimple": "~3.0",
  21. "monolog/monolog": "^1.17",
  22. "overtrue/socialite": "^1.0.25",
  23. "doctrine/cache": "1.4.*",
  24. "guzzlehttp/guzzle": "~6.2",
  25. "symfony/http-foundation": "~2.6|~2.7|~2.8|~3.0",
  26. "symfony/psr-http-message-bridge": "~0.3|^1.0"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "~4.0",
  30. "overtrue/phplint": "dev-master",
  31. "mockery/mockery": "^0.9.9"
  32. },
  33. "autoload": {
  34. "psr-4": {
  35. "EasyWeChat\\": "src/"
  36. },
  37. "files": [
  38. "src/Payment/helpers.php"
  39. ]
  40. },
  41. "autoload-dev": {
  42. "psr-4": {
  43. "EasyWeChat\\Tests\\": "tests/"
  44. }
  45. }
  46. }