forked from reactphp/reactphp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.29 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
{
"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.4.0",
"evenement/evenement": "~2.0",
"guzzle/parser": "~3.0",
"react/promise": "~2.0"
},
"require-dev": {
"phpunit/phpunit": "3.7.*"
},
"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": "Allows for use of a more performant event-loop implementation.",
"ext-libev": "Allows for use of a more performant event-loop implementation.",
"ext-event": "Allows for use of a more performant event-loop implementation."
},
"autoload": {
"psr-4": {
"React\\": "src"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.5-dev"
}
}
}