composer.json 1016 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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.0",
  18. "ext-openssl": "*",
  19. "ext-simplexml":"*",
  20. "yansongda/supports": "^1.8",
  21. "monolog/monolog": "^1.23",
  22. "symfony/http-foundation": "^3.0|^4.0",
  23. "symfony/event-dispatcher": "^3.0|^4.0"
  24. },
  25. "require-dev": {
  26. "phpunit/phpunit": "^6.2",
  27. "mockery/mockery": "1.0.x-dev"
  28. },
  29. "autoload": {
  30. "psr-4": {
  31. "Yansongda\\Pay\\": "src"
  32. }
  33. },
  34. "autoload-dev": {
  35. "psr-4": {
  36. "Yansongda\\Pay\\Tests\\": "tests"
  37. }
  38. },
  39. "license": "MIT"
  40. }