forked from amphp/http-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
79 lines (79 loc) · 1.9 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
{
"name": "amphp/aerys",
"homepage": "https://github.com/amphp/aerys",
"description": "A non-blocking HTTP/Websocket server",
"keywords": [
"http",
"websocket",
"server",
"async",
"non-blocking",
"aerys",
"amp",
"amphp"
],
"license": "MIT",
"authors": [
{
"name": "Daniel Lowrey",
"email": "[email protected]",
"role": "Creator / Lead Developer"
},
{
"name": "Bob Weinand",
"role": "Developer / API Coordinator"
},
{
"name": "Niklas Keller",
"role": "Quality Assurance / Developer"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.0.0",
"amphp/amp": "^1",
"amphp/file": "^0.1.1",
"amphp/socket": "^0.9",
"league/climate": "^3",
"nikic/fast-route": "^1",
"psr/log": "^1"
},
"require-dev": {
"amphp/artax": "^2",
"fabpot/php-cs-fixer": "^1.9",
"http2jp/hpack-test-case": "1.0",
"phpunit/phpunit": "^5.2"
},
"autoload": {
"psr-4": {
"Aerys\\": "lib/"
},
"files": ["lib/functions.php", "lib/constants.php"]
},
"autoload-dev": {
"psr-4": {
"Aerys\\Test\\": "test/"
}
},
"bin": ["bin/aerys"],
"extra": {
"branch-alias": {
"dev-master": "0.4.0-dev"
}
},
"repositories": [
{
"type": "package",
"package": {
"name": "http2jp/hpack-test-case",
"version": "1.0",
"source": {
"url": "https://github.com/http2jp/hpack-test-case",
"type": "git",
"reference": "origin/master"
}
}
}
]
}