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",
|
2020-10-14 19:17:16 +08:00
|
|
|
"source": "https://github.com/yansongda/pay",
|
|
|
|
"homepage": "https://pay.yansongda.cn"
|
2017-08-17 17:49:59 +08:00
|
|
|
},
|
2017-07-28 22:27:05 +08:00
|
|
|
"authors": [
|
|
|
|
{
|
|
|
|
"name": "yansongda",
|
|
|
|
"email": "me@yansongda.cn"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"require": {
|
2021-05-16 21:40:09 +08:00
|
|
|
"php": ">=7.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": "*",
|
2021-05-27 23:25:06 +08:00
|
|
|
"php-di/php-di": "~6.3.0",
|
2021-05-30 23:03:30 +08:00
|
|
|
"yansongda/supports": "~3.1.0",
|
2021-06-29 17:59:24 +08:00
|
|
|
"guzzlehttp/guzzle": "~7.3.0"
|
2017-07-28 22:27:05 +08:00
|
|
|
},
|
2017-08-20 22:32:15 +08:00
|
|
|
"require-dev": {
|
2021-05-16 21:40:09 +08:00
|
|
|
"phpunit/phpunit": "^9.0",
|
2021-01-10 15:59:16 +08:00
|
|
|
"mockery/mockery": "^1.4",
|
2021-06-13 23:57:39 +08:00
|
|
|
"friendsofphp/php-cs-fixer": "^3.0",
|
2021-06-04 22:27:29 +08:00
|
|
|
"monolog/monolog": "^2.2",
|
2021-05-30 23:03:30 +08:00
|
|
|
"symfony/var-dumper": "^5.1",
|
2021-06-13 23:48:17 +08:00
|
|
|
"symfony/http-foundation": "~5.2.0 || ~5.3.0",
|
2021-06-04 22:27:29 +08:00
|
|
|
"symfony/event-dispatcher": "^5.2.0",
|
2021-07-05 21:26:27 +08:00
|
|
|
"symfony/psr-http-message-bridge": "^2.1",
|
|
|
|
"phpstan/phpstan": "^0.12.91"
|
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"
|
2021-05-27 23:25:06 +08:00
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"src/Functions.php"
|
|
|
|
]
|
2017-07-28 22:27:05 +08:00
|
|
|
},
|
2017-08-20 22:57:03 +08:00
|
|
|
"autoload-dev": {
|
|
|
|
"psr-4": {
|
|
|
|
"Yansongda\\Pay\\Tests\\": "tests"
|
|
|
|
}
|
|
|
|
},
|
2021-06-07 13:58:04 +08:00
|
|
|
"scripts": {
|
|
|
|
"test": "./vendor/bin/phpunit -c phpunit.xml --colors=always",
|
2021-07-05 21:26:27 +08:00
|
|
|
"cs-fix": "php-cs-fixer fix --dry-run --diff 1>&2",
|
|
|
|
"analyse": "phpstan analyse --memory-limit 300M -l 5 -c phpstan.neon ./src"
|
2021-06-07 13:58:04 +08:00
|
|
|
},
|
2017-07-28 22:27:05 +08:00
|
|
|
"license": "MIT"
|
|
|
|
}
|