-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 827 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 827 Bytes
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
{
"name": "legionth/http-server-react",
"license": "MIT",
"authors": [
{
"name": "Niels Theen",
"email": "niels.theen@googlemail.com"
}
],
"autoload": {
"psr-4": { "Legionth\\React\\Http\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Tests\\Legionth\\React\\Http\\": "tests/" }
},
"require": {
"php": ">=5.3",
"react/event-loop": "0.3.*|0.4.*",
"react/socket-client": "^0.5",
"react/socket": "^0.4.6",
"react/dns": "0.3.*|0.4.*",
"react/stream": "0.3.*|0.4.*",
"react/promise": "~1.0|~2.0",
"evenement/evenement": "~1.0|~2.0",
"ringcentral/psr7": "^1.2"
},
"require-dev": {
"react/socket-client": "^0.5",
"clue/block-react": "^1.1"
}
}