-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
96 lines (85 loc) · 2.25 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
93
94
95
96
{
"name": "fastybird/devices-node",
"type": "project",
"description": "FastyBird IoT devices node for devices storage & basic logic services",
"keywords": [
"fastybird",
"fb",
"devices",
"channels",
"service"
],
"homepage": "https://www.fastybird.com",
"license": "Apache-2.0",
"authors": [
{
"name": "FastyBird s.r.o.",
"email": "[email protected]",
"homepage": "https://www.fastybird.com/"
},
{
"name": "Adam Kadlec",
"email": "[email protected]"
}
],
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"php": ">=7.4.0",
"cweagans/composer-patches": "^1.6",
"fastybird/bootstrap": "@dev",
"fastybird/couchdb-storage-plugin": "@dev",
"fastybird/database": "@dev",
"fastybird/devices-module": "@dev",
"fastybird/json-api": "@dev",
"fastybird/modules-metadata": "@dev",
"fastybird/mqtt-plugin": "@dev",
"fastybird/rabbitmq-plugin": "@dev",
"fastybird/simple-auth": "@dev",
"fastybird/vernemq-auth-plugin": "9999999-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",
"tracy/tracy" : "2.7"
},
"autoload": {
"psr-4": {
"FastyBird\\DevicesNode\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Cases\\": "tests/cases",
"Tests\\Fixtures\\": "tests/fixtures",
"Tests\\Tools\\": "tests/tools"
}
},
"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"
}
}
}
}