forked from reactphp/reactphp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 1 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
{
"name": "react/react",
"description": "Nuclear Reactor written in PHP.",
"keywords": ["event-loop", "reactor"],
"license": "MIT",
"support": {
"issues": "https://github.com/reactphp/react/issues",
"irc": "irc://irc.freenode.org/reactphp"
},
"require": {
"php": ">=5.3.3",
"evenement/evenement": "1.0.*",
"guzzle/parser": "~3.0",
"react/promise": "~1.0"
},
"replace": {
"react/event-loop": "self.version",
"react/cache": "self.version",
"react/stream": "self.version",
"react/socket": "self.version",
"react/socket-client": "self.version",
"react/http": "self.version",
"react/http-client": "self.version",
"react/dns": "self.version"
},
"suggest": {
"ext-libevent": "*",
"ext-libev": "*"
},
"autoload": {
"psr-0": { "React": "src" }
},
"extra": {
"branch-alias": {
"dev-master": "0.3-dev"
}
}
}