pay/composer.json

45 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": {
2020-03-30 09:13:39 +08:00
"php": "^7.2",
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-12 22:53:12 +08:00
"php-di/php-di": "^6.0",
2020-10-13 16:01:04 +08:00
"yansongda/supports": "^3.0",
2020-04-06 22:18:42 +08:00
"symfony/http-foundation": "^5.0.7",
2020-03-30 09:13:39 +08:00
"symfony/event-dispatcher": "^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-09-08 22:13:53 +08:00
"mockery/mockery": "^1.2",
2020-10-13 10:55:14 +08:00
"friendsofphp/php-cs-fixer": "^2.15",
"symfony/var-dumper": "^5.1"
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"
}