composer.json 1019 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "yansongda/pay",
  3. "description": "专注 Alipay 和 WeChat 的支付扩展包",
  4. "keywords": ["alipay", "wechat", "pay"],
  5. "type": "library",
  6. "support": {
  7. "issues": "https://github.com/yansongda/pay/issues",
  8. "source": "https://github.com/yansongda/pay"
  9. },
  10. "authors": [
  11. {
  12. "name": "yansongda",
  13. "email": "me@yansongda.cn"
  14. }
  15. ],
  16. "require": {
  17. "php": ">=7.1.3",
  18. "ext-openssl": "*",
  19. "ext-simplexml":"*",
  20. "ext-libxml": "*",
  21. "ext-json": "*",
  22. "yansongda/supports": "^2.0",
  23. "symfony/http-foundation": "^4.0",
  24. "symfony/event-dispatcher": "^4.0"
  25. },
  26. "require-dev": {
  27. "phpunit/phpunit": "^7.5",
  28. "mockery/mockery": "^1.2"
  29. },
  30. "autoload": {
  31. "psr-4": {
  32. "Yansongda\\Pay\\": "src"
  33. }
  34. },
  35. "autoload-dev": {
  36. "psr-4": {
  37. "Yansongda\\Pay\\Tests\\": "tests"
  38. }
  39. },
  40. "license": "MIT"
  41. }