-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
88 lines (88 loc) · 2.12 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
87
88
{
"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"
},
{
"name": "Aaron Piotrowski",
"email": "[email protected]"
}
],
"require": {
"php": ">=7",
"amphp/amp": "^2",
"amphp/file": "^0.2 || ^0.3",
"amphp/byte-stream": "^1",
"amphp/socket": "^0.10",
"league/climate": "^3",
"nikic/fast-route": "^1",
"psr/log": "^1",
"ocramius/package-versions": "^1.1"
},
"require-dev": {
"amphp/phpunit-util": "^1",
"amphp/artax": "^3",
"friendsofphp/php-cs-fixer": "^2.3",
"http2jp/hpack-test-case": "^1",
"phpunit/phpunit": "^6"
},
"autoload": {
"psr-4": {
"Aerys\\": "lib/"
},
"files": [
"lib/functions.php",
"lib/constants.php",
"lib/Internal/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Aerys\\Test\\": "test/"
}
},
"bin": ["bin/aerys"],
"config": {
"platform": {
"php": "7.0.0"
}
},
"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"
}
}
}
]
}