-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.11 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
{
"name": "swow/swow-library",
"description": "Coroutine-based multi-platform support library with a focus on concurrent I/O",
"keywords": [
"swow",
"library"
],
"license": "Apache-2.0",
"authors": [
{
"name": "twose",
"email": "twosee@php.net"
}
],
"support": {
"issues": "https://github.com/swow/swow"
},
"require": {
"php": ">=8.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.1|^2.0"
},
"replace": {
"swow/psr7-plus": "*"
},
"suggest": {
"ext-swow": "*"
},
"autoload": {
"psr-4": {
"Swow\\": "src/",
"Swow\\Psr7\\": "src/Psr7/",
"Swow\\Psr7\\Message\\": "lib/psr7-plus/src/Message/"
},
"files": [
"src/bootstrap.php",
"src/Debug/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Swow\\Tests\\": "tests/"
}
},
"config": {
"process-timeout": 0,
"sort-packages": true
}
}