-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
47 lines (47 loc) · 1.01 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
{
"name": "icicleio/http",
"description": "Asynchronous HTTP component for Icicle.",
"keywords": [
"http",
"asynchronous",
"async"
],
"homepage": "http://icicle.io",
"license": "MIT",
"authors": [
{
"name": "Aaron Piotrowski",
"email": "[email protected]"
}
],
"require": {
"icicleio/icicle": "^2.0",
"icicleio/stream": "^2.0",
"icicleio/socket": "^2.0",
"icicleio/dns": "^2.0",
"icicleio/log": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^5.0",
"symfony/yaml": "^2.7"
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"autoload": {
"psr-4": {
"Icicle\\Http\\": "src"
},
"files": [
"src/Message/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Icicle\\Tests\\Http\\": "tests"
}
}
}