pay/composer.json

40 lines
967 B
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": {
2017-12-13 10:42:30 +08:00
"php": ">=7.0",
2017-12-13 17:42:16 +08:00
"ext-openssl": "*",
"ext-simplexml":"*",
2018-09-11 11:38:34 +08:00
"yansongda/supports": "^1.8",
2017-12-13 17:42:16 +08:00
"monolog/monolog": "^1.23",
2017-12-14 16:55:29 +08:00
"symfony/http-foundation": "^3.0|^4.0"
2017-07-28 22:27:05 +08:00
},
2017-08-20 22:32:15 +08:00
"require-dev": {
2018-03-28 15:00:02 +08:00
"phpunit/phpunit": "^6.2",
"mockery/mockery": "1.0.x-dev"
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"
}