composer.json 590 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "six-shop/wechatpay",
  3. "description": "微信支付",
  4. "type": "sixshop-extension",
  5. "keywords": [
  6. "sixshop",
  7. "thinkphp"
  8. ],
  9. "require": {
  10. "php": ">=8.3",
  11. "six-shop/core": ">=0.4 <1.0",
  12. "six-shop/wechat": "^0.1",
  13. "wechatpay/wechatpay": "^1.4.12"
  14. },
  15. "authors": [
  16. {
  17. "name": "hui he",
  18. "email": "runphp@qq.com"
  19. }
  20. ],
  21. "license": "MIT",
  22. "autoload": {
  23. "psr-4": {
  24. "SixShop\\WechatPay\\": "src"
  25. }
  26. },
  27. "extra": {
  28. "sixshop": {
  29. "id": "wechatpay",
  30. "class": "SixShop\\WechatPay\\Extension"
  31. }
  32. }
  33. }