-
Notifications
You must be signed in to change notification settings - Fork 231
/
composer.json
52 lines (52 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
45
46
47
48
49
50
51
52
{
"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": "[email protected]",
"homepage": "http://daemon.io",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"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.6",
"ext-event": ">=1.6.0",
"ext-pcntl": "*",
"ext-shmop": "*",
"ext-sockets": "*"
},
"require-dev": {
"squizlabs/php_codesniffer": "~2.6.0",
"phpunit/phpunit": "~5.3.2"
},
"bin": [
"bin/phpd"
],
"autoload": {
"psr-4": {
"PHPDaemon\\": "PHPDaemon/"
},
"files": [
"PHPDaemon/Utils/func.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
}
}