pay/composer.json

64 lines
1.8 KiB
JSON
Raw Permalink Normal View History

2017-07-28 22:27:05 +08:00
{
"name": "yansongda/pay",
2021-07-27 10:53:41 +08:00
"description": "可能是我用过的最优雅的 Alipay 和 WeChat 的支付 SDK 扩展包了",
2017-08-17 17:49:59 +08:00
"keywords": ["alipay", "wechat", "pay"],
2018-03-28 15:00:02 +08:00
"type": "library",
2021-07-29 10:43:26 +08:00
"license": "MIT",
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": {
"php": ">=8.0",
2017-12-13 17:42:16 +08:00
"ext-openssl": "*",
"ext-simplexml":"*",
2019-06-13 20:58:14 +08:00
"ext-libxml": "*",
"ext-json": "*",
"ext-bcmath": "*",
2024-08-04 23:14:23 +08:00
"yansongda/artful": "~1.1.1",
"yansongda/supports": "~4.0.10"
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",
"friendsofphp/php-cs-fixer": "^3.44",
"phpstan/phpstan": "^1.0.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-07-29 16:10:56 +08:00
"symfony/http-foundation": "^5.2.0",
2021-06-04 22:27:29 +08:00
"symfony/event-dispatcher": "^5.2.0",
"symfony/psr-http-message-bridge": "^2.1",
"hyperf/pimple": "^2.2",
"guzzlehttp/guzzle": "^7.0",
"jetbrains/phpstorm-attributes": "^1.1"
2017-08-20 22:32:15 +08:00
},
"conflict": {
"hyperf/framework": "<3.0"
},
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-07-29 10:43:26 +08:00
}
2017-07-28 22:27:05 +08:00
}