forked from walkor/workerman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 1.18 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
{
"name" : "wujingke/workerman",
"type" : "project",
"keywords": ["workerman"],
"homepage": "http://www.workerman.net",
"license" : "MIT",
"description": " High performance Socket server framework for network applications implemented in PHP using libevent",
"authors" : [
{
"name" : "walkor",
"email" : "[email protected]",
"homepage" : "http://www.workerman.net",
"role": "Developer"
}
],
"support" : {
"email" : "[email protected]",
"issues": "https://github.com/walkor/workerman/issues",
"forum" : "http://wenda.workerman.net/",
"wiki" : "http://doc.workerman.net/index.html",
"source": "https://github.com/walkor/workerman"
},
"require": {
"php": ">=5.3",
"ext-pcntl" : "*",
"ext-shmop" : "*",
"ext-sockets": "*"
},
"suggest": {
"ext-libevent": "Really it's a requirement for normal work.",
"ext-sysvshm": "Really it's a requirement for normal work.",
"ext-sysvmsg": "Really it's a requirement for normal work."
},
"bin": ["workerman/bin/workermand"],
"minimum-stability":"dev"
}