composer.json 861 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "type": "library",
  3. "name": "zoujingli/wechat-developer",
  4. "homepage": "https://thinkadmin.top",
  5. "description": "WeChat and Alipay Platform Development",
  6. "license": "MIT",
  7. "authors": [
  8. {
  9. "name": "Anyon",
  10. "email": "zoujingli@qq.com",
  11. "homepage": "https://thinkadmin.top"
  12. }
  13. ],
  14. "keywords": [
  15. "AliPay",
  16. "WeMini",
  17. "WeChat",
  18. "WeChatPay",
  19. "WeChatDeveloper"
  20. ],
  21. "require": {
  22. "php": ">=5.4",
  23. "ext-xml": "*",
  24. "ext-json": "*",
  25. "ext-curl": "*",
  26. "ext-bcmath": "*",
  27. "ext-libxml": "*",
  28. "ext-openssl": "*",
  29. "ext-mbstring": "*",
  30. "ext-simplexml": "*"
  31. },
  32. "autoload": {
  33. "classmap": [
  34. "We.php"
  35. ],
  36. "psr-4": {
  37. "WePay\\": "WePay",
  38. "WeChat\\": "WeChat",
  39. "WeMini\\": "WeMini",
  40. "AliPay\\": "AliPay",
  41. "WePayV3\\": "WePayV3"
  42. }
  43. }
  44. }