You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.1 KiB
48 lines
1.1 KiB
{
|
|
"name": "fd_wechat/unify_payment",
|
|
"description": "Access to FangDing unified payment platform.",
|
|
"type": "library",
|
|
"license": "MIT",
|
|
"require": {
|
|
"php": ">=8.0",
|
|
"ext-json": "*",
|
|
"ext-http": "*",
|
|
"ext-libxml": "*",
|
|
"ext-simplexml": "*",
|
|
"laravel/framework": "^9.0|^10.0|^11.0",
|
|
"guzzlehttp/guzzle": "~6.0",
|
|
"monolog/monolog": "^2.0",
|
|
"pimple/pimple": "^3.0"
|
|
},
|
|
"require-dev": {
|
|
"fakerphp/faker": "~1.17.0",
|
|
"phpunit/phpunit": "^8.5.14"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"UnifyPayment\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"classmap": [
|
|
"tests/"
|
|
]
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"providers": [
|
|
"UnifyPayment\\UnifyServiceProvider"
|
|
]
|
|
},
|
|
"aliases": {
|
|
"Unify": "UnifyPayment\\Unify"
|
|
}
|
|
},
|
|
"authors": [
|
|
{
|
|
"name": "XieJC",
|
|
"email": "rmiku@qq.com"
|
|
}
|
|
],
|
|
"minimum-stability": "dev"
|
|
}
|
|
|