-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 906 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "easyalipay/easyalipay",
"description": "[A]Sync Chainable Alipay OpenAPI SDK for PHP",
"type": "library",
"keywords": [
"alipay",
"openapi-chainable",
"aes-cbc"
],
"authors": [
{
"name": "James ZHNAG",
"homepage": "https://github.com/TheNorthMemory"
}
],
"license": "MIT",
"require": {
"php": ">=7.1.2",
"ext-curl": "*",
"ext-libxml": "*",
"ext-simplexml": "*",
"ext-openssl": "*",
"guzzlehttp/guzzle": "^6.5 || ^7.0"
},
"require-dev": {
"phpunit/phpunit": "^7.5 || ^8.5.16 || ^9.3.5",
"phpstan/phpstan": "^0.12.89 || ^1.0"
},
"autoload": {
"psr-4": {
"EasyAlipay\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"EasyAlipay\\Tests\\": "tests/"
}
}
}