composer.json 942 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "riverslei/payment",
  3. "type": "library",
  4. "description": "支付宝支付、微信支付、招商一网通支付php SDK。方便快速接入,最完整的开源支付 php sdk",
  5. "keywords": ["alipay", "weixin", "支付宝支付", "微信支付", "集成支付接口SDK", "招商一网通", "一网通"],
  6. "homepage": "http://helei112g.github.io/payment",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Leo",
  11. "email": "dayugog@gmail.com",
  12. "homepage": "https://dayutalk.cn"
  13. }
  14. ],
  15. "require": {
  16. "php": ">=7.0",
  17. "ext-bcmath": "*",
  18. "ext-mbstring": "*",
  19. "ext-json": "*",
  20. "ext-simplexml": "*",
  21. "ext-xml": "*",
  22. "ext-openssl": "*",
  23. "guzzlehttp/guzzle": "~6.0"
  24. },
  25. "require-dev": {
  26. "codeception/codeception": "*"
  27. },
  28. "autoload": {
  29. "psr-4": {"Payment\\": "src/"}
  30. }
  31. }