composer.json 631 B

12345678910111213141516171819202122232425262728293031323334
  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/payment": ">=0.2 <1.0",
  12. "six-shop/core": ">=0.5.13 <1.0",
  13. "six-shop/wechat": "^0.1",
  14. "wechatpay/wechatpay": "^1.4.12"
  15. },
  16. "authors": [
  17. {
  18. "name": "hui he",
  19. "email": "runphp@qq.com"
  20. }
  21. ],
  22. "license": "MIT",
  23. "autoload": {
  24. "psr-4": {
  25. "SixShop\\WechatPay\\": "src"
  26. }
  27. },
  28. "extra": {
  29. "sixshop": {
  30. "id": "wechatpay",
  31. "class": "SixShop\\WechatPay\\Extension"
  32. }
  33. }
  34. }