-
Notifications
You must be signed in to change notification settings - Fork 210
/
composer.json
51 lines (51 loc) · 1.3 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
{
"name": "wrench/wrench",
"type": "library",
"description": "PHP WebSocket client/server library",
"keywords": ["websocket", "websockets", "hybi"],
"homepage": "http://github.com/varspool/Wrench",
"license": "WTFPL",
"authors": [
{
"name": "Dominic Scheirlinck",
"email": "dominic@varspool.com",
"homepage": "http://www.somethingemporium.com/"
},
{
"name": "Simon Samtleben",
"email": "web@lemmingzshadow.net",
"homepage": "http://lemmingzshadow.net/"
},
{
"name": "Nico Kaiser",
"email": "nico@kaiser.me",
"homepage": "http://siriux.net/"
}
],
"require": {
"php": ">=7.1.0",
"ext-sockets": "*",
"psr/log": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "~6.0",
"squizlabs/php_codesniffer": "~2.8",
"phpunit/php-invoker": "^1.1"
},
"suggest": {
"monolog/monolog": "For logging from the server classes via PSR3"
},
"autoload": {
"psr-4": {
"Wrench\\": "lib/"
}
},
"config": {
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
}
}
}