-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
46 lines (46 loc) · 1.39 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
{
"name": "openswoole/core",
"description": "Openswoole core library",
"license": "Apache-2.0",
"authors": [
{
"name": "OpenSwoole Group",
"email": "[email protected]"
}
],
"keywords": ["php", "openswoole", "websocket", "http2", "tcp", "mqtt", "http"],
"homepage": "https://openswoole.com",
"support": {
"docs": "https://openswoole.com/docs",
"issues": "https://github.com/openswoole/openswoole/issues",
"pull-request": "https://github.com/openswoole/openswoole/pulls",
"source": "https://github.com/openswoole/openswoole"
},
"require": {
"php": ">=7.4",
"ext-openswoole": ">=22.0",
"psr/http-message": "^1.0 || ^2.0",
"psr/http-server-middleware": "^1.0.0"
},
"require-dev": {
"ext-curl": "*",
"ext-sockets": "*",
"phpunit/phpunit": "^9.5",
"openswoole/ide-helper": "^22.0",
"friendsofphp/php-cs-fixer": "^3.6",
"php-http/psr7-integration-tests": "^1.1"
},
"suggest": {
"ext-mysqli": "*",
"ext-pdo": "*",
"ext-redis": "Required to use redis database, and the required version is greater than or equal to 3.1.3"
},
"autoload": {
"psr-4": {
"OpenSwoole\\Core\\": "src/"
},
"files": [
"src/Coroutine/functions.php"
]
}
}