-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
51 lines (51 loc) · 1.2 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
{
"name": "zxin/socket-log-server",
"type": "project",
"authors": [
{
"name": "auooru",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"license": "MIT",
"autoload": {
"psr-4": {
"SocketLog\\": "src/"
},
"files": [
"src/func.php"
]
},
"require": {
"php": "^8.1",
"ext-ctype": "*",
"ext-mbstring": "*",
"ext-zlib": "*",
"psr/log": "^1.1|^2.0|^3.0",
"symfony/console": "^6.0",
"vlucas/phpdotenv": "^5.5",
"zxin/utils": "^2.4"
},
"require-dev": {
"swoole/ide-helper": "^5"
},
"replace": {
"symfony/polyfill-php73": "*",
"symfony/polyfill-php74": "*",
"symfony/polyfill-php80": "*",
"symfony/polyfill-php81": "*",
"symfony/polyfill-php82": "*",
"symfony/polyfill-ctype": "*",
"symfony/polyfill-mbstring": "*"
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"platform-check": true,
"platform": {
"php": "8.1"
}
}
}