-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
80 lines (80 loc) · 1.91 KB
/
composer.json
File metadata and controls
80 lines (80 loc) · 1.91 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "localzet/server",
"description": "Localzet Server is a high-performance asynchronous event-driven server for PHP, designed for modern applications with scalability and security in mind.",
"type": "project",
"keywords": [
"asynchronous",
"event-driven",
"server",
"PHP",
"security",
"scalability",
"performance",
"async",
"sockets",
"pcntl",
"posix",
"psr",
"AGPL"
],
"license": "AGPL-3.0-or-later",
"authors": [
{
"role": "Developer",
"name": "Ivan Zorin",
"email": "[email protected]",
"homepage": "https://github.com/localzet"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/localzet/Server/issues",
"source": "https://github.com/localzet/Server",
"docs": "https://server.localzet.com"
},
"require": {
"php": "^8.1 || ^8.2",
"ext-json": "*",
"ext-sockets": "*",
"ext-pcntl": "*",
"ext-posix": "*",
"localzet/events": "^1"
},
"suggest": {
"ext-uv": "For better performance with libuv.",
"ext-ev": "For better performance with libev.",
"ext-event": "For better performance with libevent.",
"ext-swoole": "For enhanced async capabilities and performance.",
"ext-swow": "For next-gen async PHP features.",
"ext-redis": "For Redis Session Handler support.",
"mongodb/mongodb": "For MongoDB Session Handler support."
},
"conflict": {
"ext-swow": "<v1.0.0"
},
"autoload": {
"psr-4": {
"localzet\\": "",
"localzet\\Server\\": "src"
},
"files": [
"Helpers.php"
]
},
"require-dev": {
"rector/rector": "*",
"phpunit/phpunit": "^9 || ^10",
"friendsofphp/php-cs-fixer": "*",
"vimeo/psalm": "*"
},
"scripts": {
"test": "phpunit",
"fix-cs": "php-cs-fixer fix",
"analyze": "psalm"
},
"extra": {
"branch-alias": {
"dev-main": "4.5.x"
}
}
}