composer.json 879 B

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