-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
127 lines (127 loc) · 3.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "fastybird/application",
"description": "FastyBird IoT application",
"keywords": [
"fastybird",
"fb",
"api",
"php",
"iot",
"vuejs",
"typescript",
"vue",
"connector",
"nette",
"vue3",
"pinia"
],
"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]"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/FastyBird/fastybird/issues",
"source": "https://github.com/FastyBird/application"
},
"require": {
"php": ">=8.2.0",
"contributte/cache": "^0.6",
"contributte/console": "^0.9",
"contributte/monolog": "^0.5",
"contributte/translation": "^2.0",
"contributte/vite": "^0.2",
"cweagans/composer-patches": "^1.7",
"doctrine/orm": "2.15.*",
"fastybird/simple-auth": "^0.14",
"ipub/doctrine-crud": "^5.1",
"ipub/doctrine-timestampable": "^2.0",
"ipub/slim-router": "^0.2",
"nette/bootstrap": "^3.2",
"nette/application": "^3.1",
"nette/caching": "^3.3",
"nette/di": "^3.2",
"nette/utils": "^4.0",
"nettrine/dbal": "^0.8",
"nettrine/orm": "^0.8",
"orisai/nette-object-mapper": "^0.1",
"orisai/object-mapper": "^0.2",
"psr/event-dispatcher": "^1.0",
"ramsey/uuid": "^4.7",
"react/event-loop": "^1.3",
"symfony/event-dispatcher-contracts": "^3.5",
"symfony/monolog-bridge": "^6.1",
"symplify/vendor-patches": "^11.2"
},
"require-dev": {
"brianium/paratest": "^7.3",
"dg/bypass-finals": "^1.4",
"ipub/websockets": "^1.7",
"ipub/websockets-wamp": "^1.4",
"infection/infection": "^0.27",
"orisai/coding-standard": "^3.2",
"pds/skeleton": "^1.0",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-doctrine": "^1.3",
"phpstan/phpstan-nette": "^1.1",
"phpstan/phpstan-phpunit": "^1.1",
"phpstan/phpstan-strict-rules": "^1.4",
"phpunit/phpunit": "^10.0",
"react/http": "^1.7",
"staabm/annotate-pull-request-from-checkstyle": "^1.8",
"tracy/tracy": "^2.9"
},
"autoload": {
"psr-4": {
"FastyBird\\Core\\Application\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"FastyBird\\Core\\Application\\Tests\\Cases\\Unit\\": "tests/cases/unit",
"FastyBird\\Core\\Application\\Tests\\Fixtures\\": "tests/fixtures",
"FastyBird\\Core\\Application\\Tests\\Fixtures\\Dummy\\": "tests/fixtures/dummy",
"FastyBird\\Core\\Application\\Tests\\Tools\\": "tests/tools"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"cweagans/composer-patches": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true,
"infection/extension-installer": true,
"php-http/discovery": false
}
},
"bin": [
"bin/fb-console",
"bin/fb-console.php",
"bin/fb-supervisor",
"bin/fb-supervisor.php"
],
"extra": {
"branch-alias": {
"dev-main": "1.0-dev"
},
"patches": {
"dg/bypass-finals": {
"Bug: mkdir check": "https://raw.githubusercontent.com/FastyBird/libraries-patches/master/dg-bypass-finals-src-nativewrapper-php.patch"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}