-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
56 lines (53 loc) · 1.28 KB
/
Copy pathcomposer.json
File metadata and controls
56 lines (53 loc) · 1.28 KB
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
54
55
56
{
"name": "t4web/websocket",
"description": "ZF2 Module. Websocket server",
"type": "library",
"license": "BSD-3-Clause",
"keywords": [
"zf2",
"module",
"zf2 module",
"websocket"
],
"homepage": "https://github.com/t4web/Websocket",
"authors": [
{
"name": "Max Gulturyan",
"email": "gulturyan@gmail.com",
"homepage": "http://about.me/maxgu"
}
],
"require": {
"php": "^5.5 || ^7.0",
"zendframework/zend-console": "~2.5.0",
"zendframework/zend-json": "~2.5.0",
"zendframework/zend-servicemanager": "~2.5.0",
"react/socket": "~0.4.2",
"cboden/ratchet": "~0.3.5",
"ratchet/pawl": "^0.2.2",
"t4web/default-service": "~0.1.0"
},
"require-dev" : {
"phpunit/phpunit": "^4.8",
"squizlabs/php_codesniffer": "^2.3"
},
"autoload": {
"psr-4": {
"T4web\\Websocket\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"T4web\\WebsocketTest\\": "tests/"
}
},
"scripts": {
"check": [
"@cs",
"@test"
],
"cs": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always"
}
}