-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.27 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
53
{
"name" : "gomoob/php-websocket-server",
"description" : "WebSocket server with tags management, forward your messages on the right clients with ease !",
"version" : "1.2.0",
"license" : "MIT",
"minimum-stability" : "stable",
"prefer-stable" : true,
"keywords" : [
"gomoob",
"ratchet",
"websocket"
],
"authors" : [{
"name" : "Baptiste Gaillard",
"email" : "baptiste.gaillard@gomoob.com"
}, {
"name" : "Simon Baudry",
"email" : "simon.baudry@gomoob.com"
}
],
"autoload" : {
"psr-4" : {
"Gomoob\\" : "src/main/php/Gomoob"
}
},
"autoload-dev" : {
"psr-4" : {
"Gomoob\\" : "src/test/php/Gomoob"
}
},
"require" : {
"php" : ">=5.6",
"cboden/ratchet" : "^0.3.5",
"monolog/monolog" : "^1.21.0",
"symfony/yaml" : "^3.1.3",
"textalk/websocket" : "^1.2.0"
},
"require-dev" : {
"brianium/paratest" : "^0.14.0",
"codeclimate/php-test-reporter" : "^0.3.2",
"pdepend/pdepend" : "^2.2.4",
"phpdocumentor/phpdocumentor" : "^2.9.0",
"phploc/phploc" : "^3.0.1",
"phpmd/phpmd" : "^2.4.3",
"phpmetrics/phpmetrics" : "^1.10.0",
"phpunit/dbunit" : "^2.0.2",
"phpunit/php-code-coverage" : "^4.0.1",
"phpunit/phpunit" : "^5.5.0",
"satooshi/php-coveralls" : "~1.0",
"sebastian/phpcpd" : "^2.0.4",
"squizlabs/php_codesniffer" : "^2.6.2"
}
}