forked from kakserpom/phpdaemon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 1.17 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
{
"name" : "kakserpom/phpdaemon",
"type" : "library",
"keywords": ["phpdaemon"],
"homepage": "https://github.com/kakserpom/phpdaemon",
"license" : "GPL-3.0+",
"description": "Asynchronous server-side framework for Web and network applications implemented in PHP using libevent. phpDaemon can handle thousands of simultaneous connections.",
"authors" : [
{
"name" : "Vasily Zorin",
"email" : "phpdaemon@googlegroups.com",
"homepage" : "http://daemon.io",
"role" : "Developer"
}
],
"support" : {
"email" : "phpdaemon@googlegroups.com",
"issues": "https://github.com/kakserpom/phpdaemon/issues",
"forum" : "https://groups.google.com/forum/?hl=ru#!forum/phpdaemon",
"wiki" : "https://github.com/kakserpom/phpdaemon/wiki",
"source": "https://github.com/kakserpom/phpdaemon/releases"
},
"require": {
"php": ">=5.4",
"ext-event" : ">=1.6.0",
"ext-pcntl" : "*",
"ext-shmop" : "*",
"ext-sockets": "*"
},
"bin": ["bin/phpd"],
"autoload": {
"psr-0": { "PHPDaemon": "" }
}
}