-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 1.07 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
{
"name": "phpstreamserver/core",
"description": "PHPStreamServer is a high performance PHP application server",
"keywords": ["phpstreamserver", "async", "server", "process", "socket", "stream"],
"homepage": "https://phpstreamserver.dev",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Anton Zenkov",
"email": "[email protected]",
"homepage": "https://github.com/luzrain/",
"role": "Developer"
}
],
"require": {
"php": ">=8.2",
"ext-pcntl": "*",
"ext-posix": "*",
"amphp/amp": "^3.0.2",
"amphp/byte-stream": "^2.1.1",
"amphp/socket": "^2.3.1",
"psr/container": "^2.0",
"psr/log": "^3.0",
"revolt/event-loop": "^1.0.6"
},
"autoload": {
"psr-4": {
"PHPStreamServer\\Core\\": "src/"
},
"files": [
"src/functions.php"
]
},
"suggest": {
"ext-uv": "For better performance"
},
"config": {
"sort-packages": true
}
}