-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
77 lines (62 loc) · 1.35 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
{
"name" : "ipub/mqtt-client",
"type" : "library",
"description" : "Asynchronous MQTT client built on React",
"keywords" : [
"nette",
"mqtt",
"client",
"ipub",
"ipublikuj",
"framework",
"tools"
],
"homepage" : "https://github.com/iPublikuj/mqtt-client",
"license" : [
"GPL-2.0",
"GPL-3.0"
],
"authors" : [
{
"name" : "iPublikuj:cms",
"email" : "info@ipublikuj.eu",
"homepage" : "http://www.ipublikuj.eu/"
}
],
"support" : {
"email" : "support@ipublikuj.eu",
"issues" : "https://github.com/iPublikuj/mqtt-client/issues"
},
"extra" : {
"ipub" : {
"configuration" : {
"extension" : "IPub\\MQTTClient\\DI\\MQTTClientExtension"
}
}
},
"require" : {
"php" : ">=7.2.0",
"nette/di" : "~3.0",
"nette/utils" : "~3.0",
"binsoul/net-mqtt" : "0.2.1",
"react/promise" : "~2.7",
"react/socket" : "~1.2",
"psr/log" : "~1.0"
},
"require-dev" : {
"nette/bootstrap" : "~3.0",
"nette/mail" : "~3.0",
"nette/robot-loader" : "~3.0",
"nette/safe-stream" : "~2.3",
"nette/tester" : "~2.3",
"tracy/tracy" : "~2.4",
"contributte/event-dispatcher" : "~0.5",
"contributte/console" : "~0.6",
"pds/skeleton" : "~1.0"
},
"autoload" : {
"psr-0" : {
"IPub\\MQTTClient\\" : "src/"
}
}
}