-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
101 lines (90 loc) · 2.27 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
97
98
99
100
101
{
"name" : "fastybird/vernemq-auth-plugin",
"type" : "library",
"description" : "FastyBird VerneMQ auth plugin",
"keywords" : [
"fastybird",
"fb",
"libs",
"library",
"verne",
"vernemq",
"authentication",
"database",
"api"
],
"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",
"contributte/console": "^0.8",
"contributte/translation": "^0.8",
"fastybird/database": "@dev",
"fastybird/json-api": "@dev",
"fastybird/simple-auth": "@dev",
"fastybird/web-server": "@dev",
"ipub/doctrine-consistence": "^0.3",
"ipub/doctrine-timestampable": "^1.4",
"nette/bootstrap": "^3.0",
"nette/di": "^3.0",
"nette/utils": "^3.0",
"psr/log": "^1.1"
},
"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",
"tracy/tracy": "~2.4"
},
"autoload" : {
"psr-4" : {
"FastyBird\\VerneMqAuthPlugin\\" : "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"
}
}
}
}