-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
86 lines (86 loc) · 2.14 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "amphp/cluster",
"homepage": "https://github.com/amphp/cluster",
"description": "Building multi-core network applications with PHP.",
"keywords": [
"cluster",
"multi-process",
"multi-core",
"parallel",
"async",
"non-blocking",
"amp",
"amphp",
"sockets",
"watcher"
],
"license": "MIT",
"authors": [
{
"name": "Aaron Piotrowski",
"email": "aaron@trowski.com"
},
{
"name": "Niklas Keller",
"email": "me@kelunik.com"
},
{
"name": "Bob Weinand"
}
],
"require": {
"php": ">=8.1",
"ext-sockets": "*",
"amphp/amp": "^3",
"amphp/byte-stream": "^2",
"amphp/log": "^2",
"amphp/parallel": "^2.2",
"amphp/pipeline": "^1.1",
"amphp/process": "^2",
"amphp/serialization": "^1",
"amphp/socket": "^2",
"amphp/sync": "^2",
"league/climate": "^3",
"monolog/monolog": "^3|^2|^1.23",
"psr/log": "^3|^2|^1",
"revolt/event-loop": "^1"
},
"require-dev": {
"ext-pcntl": "*",
"amphp/file": "^3",
"amphp/http-server": "^3",
"amphp/phpunit-util": "^3",
"amphp/php-cs-fixer-config": "^2",
"phpunit/phpunit": "^9",
"psalm/phar": "~5.26.1"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Amp\\Cluster\\": "src"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Amp\\Cluster\\Test\\": "test"
}
},
"suggest": {
"ext-sockets": "Required for socket transfer on systems that do not support SO_REUSEPORT",
"amphp/file": "Required for logging to a file"
},
"conflict": {
"amphp/file": "<3 || >=4"
},
"bin": [
"bin/cluster"
],
"scripts": {
"test": "@php -dzend.assertions=1 -dassert.exception=1 ./vendor/bin/phpunit",
"code-style": "@php ./vendor/bin/php-cs-fixer fix"
}
}