-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 778 Bytes
/
Copy pathcomposer.json
File metadata and controls
35 lines (35 loc) · 778 Bytes
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
{
"name": "prowendi/myt-php-sdk",
"description": "MYT OpenAPI PHP SDK for Swoole/Hyperf 3.1",
"type": "library",
"license": "MIT",
"require": {
"php": ">=8.1",
"guzzlehttp/guzzle": "^7.8",
"psr/container": "^1.1 || ^2.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5"
},
"suggest": {
"hyperf/guzzle": "Use Hyperf CoroutineHandler in Swoole/Hyperf runtime",
"hyperf/pool": "Optional: manage Guzzle client pools in Hyperf"
},
"autoload": {
"psr-4": {
"Myt\\PhpSdk\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Myt\\PhpSdk\\Tests\\": "tests/"
}
},
"extra": {
"hyperf": {
"config": "Myt\\PhpSdk\\Hyperf\\ConfigProvider"
}
},
"minimum-stability": "stable",
"prefer-stable": true
}