-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
79 lines (67 loc) · 1.52 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name" : "ipub/websockets-wamp-client",
"type" : "library",
"description" : "Web sockets WAMPv1 client",
"keywords" : ["websockets", "wamp", "v1", "client", "ipub", "ipublikuj", "framework", "tools"],
"homepage" : "https://github.com/iPublikuj/websockets-wamp-client",
"license" : ["GPL-2.0", "GPL-3.0"],
"authors": [
{
"name" : "iPublikuj:cms",
"email" : "info@ipublikuj.eu",
"homepage" : "https://www.ipublikuj.eu/"
}
],
"support":{
"email" :"support@fastybird.com",
"issues" :"https://github.com/iPublikuj/websockets-wamp-client/issues"
},
"extra": {
"ipub" : {
"configuration" : {
"extensions" : {
"wampClient" : "IPub\\WebSocketsWAMPClient\\DI\\WebSocketsWAMPClientExtension"
},
"wampClient": {
"server": {
"host" : "127.0.0.1",
"port" : 8080,
"path" : "/",
"origin" : null,
"dns" : {
"enable" : true,
"address" : "8.8.8.8"
},
"secured" : {
"enable" : false,
"sslSettings" : []
}
},
"loop": null
}
}
}
},
"require": {
"php" : ">=7.1.0",
"psr/log" : "~1.0",
"nette/di" : "~2.4",
"nette/utils" : "~2.4",
"react/stream" : "^0.7.7",
"kdyby/console" : "~2.7"
},
"require-dev": {
"nette/bootstrap" : "~2.4",
"nette/mail" : "~2.4",
"nette/robot-loader" : "~2.4",
"nette/safe-stream" : "~2.3",
"nette/tester" : "~2.0",
"tracy/tracy" : "~2.4",
"pds/skeleton" : "~1.0"
},
"autoload": {
"psr-0": {
"IPub\\WebSocketsWAMPClient\\": "src/"
}
}
}