-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
66 lines (66 loc) · 1.49 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
{
"name": "amphp/hpack",
"homepage": "https://github.com/amphp/hpack",
"description": "HTTP/2 HPack implementation.",
"keywords": [
"http-2",
"hpack",
"headers"
],
"license": "MIT",
"authors": [
{
"name": "Daniel Lowrey",
"email": "[email protected]"
},
{
"name": "Bob Weinand"
},
{
"name": "Niklas Keller",
"email": "[email protected]"
},
{
"name": "Aaron Piotrowski",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1"
},
"require-dev": {
"amphp/php-cs-fixer-config": "^2",
"http2jp/hpack-test-case": "^1",
"phpunit/phpunit": "^7 | ^8 | ^9",
"nikic/php-fuzzer": "^0.0.10"
},
"autoload": {
"psr-4": {
"Amp\\Http\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Amp\\Http\\": "test"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.x-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"
}
}
}
]
}