composer.json 745 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "wechatpay/wechatpay-guzzle-middleware",
  3. "version": "0.2.2",
  4. "description": "WechatPay API V3 Guzzle Middleware",
  5. "type": "library",
  6. "keywords": [
  7. "wechatpay"
  8. ],
  9. "homepage": "https://wechatpay-api.gitbook.io/wechatpay-api-v3/",
  10. "license": "Apache-2.0",
  11. "require": {
  12. "php": ">=5.5",
  13. "ext-openssl": "*"
  14. },
  15. "require-dev": {
  16. "guzzlehttp/guzzle": "^6.3"
  17. },
  18. "autoload": {
  19. "psr-4": { "WechatPay\\GuzzleMiddleware\\" : "src/" }
  20. },
  21. "bin": [
  22. "tool/CertificateDownloader.php"
  23. ],
  24. "suggest": {
  25. "ext-bcmath": "Require bcmath in php 5.* version.",
  26. "guzzlehttp/guzzle": "For using wechatpay guzzle middleware."
  27. }
  28. }