-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
43 lines (43 loc) · 1021 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
40
41
42
43
{
"name": "runtime/swoole",
"description": "Swoole runtime",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Tobias Nyholm",
"email": "tobias.nyholm@gmail.com"
}
],
"require": {
"php": ">=8.1",
"symfony/runtime": "^5.4.26 || ^6.3.2 || ^7.0"
},
"require-dev": {
"illuminate/http": "^9.14",
"phpunit/phpunit": "^9.6.15",
"swoole/ide-helper": "^4.6",
"symfony/http-foundation": "^5.4.32 || ^6.3.9 || ^7.0",
"symfony/http-kernel": "^5.4.33 || ^6.3.10 || ^7.0"
},
"conflict": {
"ext-swoole": "<4.6.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Runtime\\Swoole\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Runtime\\Swoole\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"symfony/runtime": true
}
}
}