控制台应用,yzncms本身基于tp5.1框架,里面的队列用不了,bug,坑
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

composer.json 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. "ext-bcmath": "*",
  23. "yansongda/supports": "^2.0",
  24. "symfony/http-foundation": "^4.0 || ^5.0.7",
  25. "symfony/event-dispatcher": "^4.0 || ^5.0"
  26. },
  27. "require-dev": {
  28. "phpunit/phpunit": "^7.5",
  29. "mockery/mockery": "^1.2",
  30. "friendsofphp/php-cs-fixer": "^2.15"
  31. },
  32. "autoload": {
  33. "psr-4": {
  34. "Yansongda\\Pay\\": "src"
  35. }
  36. },
  37. "autoload-dev": {
  38. "psr-4": {
  39. "Yansongda\\Pay\\Tests\\": "tests"
  40. }
  41. },
  42. "license": "MIT"
  43. }