-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
52 lines (52 loc) · 1.31 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
{
"name": "mpyw/php-hyper-builtin-server",
"description": "Reverse proxy for PHP built-in server which supports multiprocessing and TLS/SSL encryption",
"type": "project",
"license": "MIT",
"keywords": [
"built-in",
"builtin",
"reverse",
"proxy",
"server",
"TLS",
"SSL",
"multiprocess",
"multiprocessing"
],
"authors": [
{
"name": "mpyw",
"email": "ryosuke_i_628@yahoo.co.jp",
"role": "Developer"
},
{
"name": "Anton Komarev",
"email": "anton@komarev.com",
"homepage": "https://komarev.com",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"mpyw\\HyperBuiltinServer\\": "src/",
"React\\Socket\\": "socket/src/"
}
},
"require": {
"php": ">=5.4.0",
"lib-openssl": "*",
"react/child-process": "^0.4.1",
"react/promise": "^2.4"
},
"require-dev": {
"php": ">=7.0.0",
"codeception/aspect-mock": "^2.0",
"codeception/codeception": "^2.2",
"codeception/specify": "^0.4.6",
"satooshi/php-coveralls": "^1.0",
"mpyw/privator": "^2.0",
"mpyw/co": "^1.5"
},
"bin": ["hyper-run"]
}