composer.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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.1",
  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 || ^2.0",
  25. "overtrue/socialite": "~2.0",
  26. "pimple/pimple": "^3.0",
  27. "psr/simple-cache": "^1.0",
  28. "symfony/cache": "^3.3 || ^4.3",
  29. "symfony/event-dispatcher": "^4.3",
  30. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0",
  31. "symfony/psr-http-message-bridge": "^0.3 || ^1.0"
  32. },
  33. "require-dev": {
  34. "friendsofphp/php-cs-fixer": "^2.15",
  35. "mikey179/vfsstream": "^1.6",
  36. "mockery/mockery": "^1.2.3",
  37. "phpstan/phpstan": "^0.11.12",
  38. "phpunit/phpunit": "^7.5"
  39. },
  40. "autoload": {
  41. "psr-4": {
  42. "EasyWeChat\\": "src/"
  43. },
  44. "files": [
  45. "src/Kernel/Support/Helpers.php",
  46. "src/Kernel/Helpers.php"
  47. ]
  48. },
  49. "autoload-dev": {
  50. "psr-4": {
  51. "EasyWeChat\\Tests\\": "tests/"
  52. }
  53. },
  54. "scripts": {
  55. "phpcs": "vendor/bin/php-cs-fixer fix",
  56. "phpstan": "vendor/bin/phpstan analyse",
  57. "test": "vendor/bin/phpunit"
  58. }
  59. }