-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
92 lines (81 loc) · 2.11 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
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name" : "fastybird/ui-node",
"type" : "project",
"description" : "FastyBird IoT user interface node for additional user specific visualisation",
"keywords" : [
"fastybird",
"fb",
"ui",
"interface",
"service"
],
"homepage" : "https://www.fastybird.com",
"license" : "Apache-2.0",
"authors" : [
{
"name" : "FastyBird s.r.o.",
"email" : "code@fastybird.com",
"homepage" : "https://www.fastybird.com/"
},
{
"name" : "Adam Kadlec",
"email" : "adam.kadlec@fastybird.com"
}
],
"prefer-stable" : true,
"minimum-stability" : "dev",
"require" : {
"php": ">=7.4.0",
"cweagans/composer-patches": "^1.6",
"fastybird/bootstrap": "@dev",
"fastybird/database": "@dev",
"fastybird/json-api": "@dev",
"fastybird/modules-metadata": "@dev",
"fastybird/rabbitmq-plugin": "@dev",
"fastybird/simple-auth": "@dev",
"fastybird/ui-module": "@dev",
"fastybird/web-server": "@dev"
},
"require-dev" : {
"mockery/mockery" : "^1.3",
"ninjify/nunjuck" : "^0.3",
"ninjify/qa" : "^0.10",
"pds/skeleton" : "~1.0",
"phpstan/extension-installer" : "^1.0",
"phpstan/phpstan" : "^0.12",
"phpstan/phpstan-deprecation-rules" : "^0.12",
"phpstan/phpstan-doctrine" : "^0.12",
"phpstan/phpstan-nette" : "^0.12",
"phpstan/phpstan-strict-rules" : "^0.12.2",
"tracy/tracy" : "2.7"
},
"autoload" : {
"psr-4" : {
"FastyBird\\UINode\\" : "src/"
}
},
"autoload-dev" : {
"psr-4" : {
"Tests\\Cases\\" : "tests/cases"
}
},
"config" : {
"sort-packages" : true
},
"extra" : {
"patches" : {
"doctrine/orm" : {
"Bug: Ramsey uuid not working" : "patches/doctrine.orm.uuid.diff"
},
"ramsey/uuid-doctrine" : {
"Bug: Ramsey uuid conversion fallback" : "patches/ramsey.uuid.doctrine.diff"
},
"nettrine/orm" : {
"Enable connection overides" : "patches/nettrine.orm.mangerRegistry.diff"
},
"nette/utils" : {
"Bug: Offset check with null support" : "patches/nette.array.offsetCheck.diff"
}
}
}
}