pay/composer.json

44 lines
1.1 KiB
JSON
Raw Normal View History

2017-07-28 22:27:05 +08:00
{
"name": "yansongda/pay",
"description": "专注 Alipay 和 WeChat 的支付扩展包",
2017-08-17 17:49:59 +08:00
"keywords": ["alipay", "wechat", "pay"],
2018-03-28 15:00:02 +08:00
"type": "library",
2017-08-17 17:49:59 +08:00
"support": {
"issues": "https://github.com/yansongda/pay/issues",
"source": "https://github.com/yansongda/pay"
},
2017-07-28 22:27:05 +08:00
"authors": [
{
"name": "yansongda",
"email": "me@yansongda.cn"
}
],
"require": {
"php": ">=7.1.3",
2017-12-13 17:42:16 +08:00
"ext-openssl": "*",
"ext-simplexml":"*",
2019-06-13 20:58:14 +08:00
"ext-libxml": "*",
"ext-json": "*",
2020-01-09 20:00:38 +08:00
"ext-bcmath": "*",
2019-09-21 22:33:13 +08:00
"yansongda/supports": "^2.0",
2020-06-25 19:09:25 +08:00
"symfony/http-foundation": "^4.0 || ^5.0.7",
2020-03-08 00:17:11 +08:00
"symfony/event-dispatcher": "^4.0 || ^5.0"
2017-07-28 22:27:05 +08:00
},
2017-08-20 22:32:15 +08:00
"require-dev": {
2019-08-31 11:49:37 +08:00
"phpunit/phpunit": "^7.5",
2019-10-11 22:10:41 +08:00
"mockery/mockery": "^1.2",
"friendsofphp/php-cs-fixer": "^2.15"
2017-08-20 22:32:15 +08:00
},
2017-07-28 22:27:05 +08:00
"autoload": {
"psr-4": {
2017-07-30 00:10:43 +08:00
"Yansongda\\Pay\\": "src"
2017-07-28 22:27:05 +08:00
}
},
2017-08-20 22:57:03 +08:00
"autoload-dev": {
"psr-4": {
"Yansongda\\Pay\\Tests\\": "tests"
}
},
2017-07-28 22:27:05 +08:00
"license": "MIT"
}