-
Notifications
You must be signed in to change notification settings - Fork 105
/
composer.json
60 lines (60 loc) · 1.44 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
51
52
53
54
55
56
57
58
59
60
{
"name": "topthink/think-swoole",
"description": "Swoole extend for thinkphp",
"license": "Apache-2.0",
"authors": [
{
"name": "liu21st",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"ext-json": "*",
"ext-swoole": ">=4.6",
"nette/php-generator": "^4.0",
"open-smf/connection-pool": ">=1.0",
"stechstudio/backoff": "^1.2",
"swoole/ide-helper": "^4.3",
"symfony/finder": "^4.3.2|^5.1",
"topthink/framework": "^6.0|^8.0"
},
"require-dev": {
"symfony/var-dumper": "^4.3|^5.1",
"topthink/think-tracing": "^1.0",
"topthink/think-queue": "^3.0",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"think\\swoole\\": "src"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"think\\tests\\swoole\\": "tests/"
}
},
"extra": {
"think": {
"services": [
"think\\swoole\\Service"
],
"config": {
"swoole": "src/config/swoole.php"
}
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"platform-check": false,
"platform": {
"ext-swoole": "4.6.1",
"ext-fileinfo": "1.0.4"
}
}
}