-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
139 lines (139 loc) · 3.62 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
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "iqrf/iqrf-gateway-webapp",
"description": "IQRF Gateway Daemon web application",
"type": "project",
"keywords": [
"nette",
"iqrf",
"iqrf-daemon",
"iqrf-gateway",
"iqrf-gateway-daemon"
],
"homepage": "https://gitlab.iqrf.org/open-source/iqrf-gateway-webapp",
"license": "Apache-2.0",
"authors": [
{
"name": "Roman Ondráček",
"homepage": "https://romanondracek.cz/",
"email": "[email protected]",
"role": "developer"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://gitlab.iqrf.org/open-source/iqrf-gateway-webapp-utils/ip-php-library.git"
}
],
"require": {
"php": ">=8.1.2",
"ext-json": "*",
"ext-openssl": "*",
"ext-posix": "*",
"ext-zip": "*",
"acmephp/ssl": "^2.1.0",
"contributte/apitte": "^v0.12.2",
"contributte/console": "^v0.10.1",
"contributte/console-extra": "^v0.8.0",
"contributte/di": "^0.5.6",
"contributte/guzzlette": "^v3.3.1",
"contributte/middlewares": "^v0.12.1",
"contributte/monolog": "^v0.5.2",
"contributte/psr7-http-message": "^v0.10.0",
"contributte/sentry": "^v0.3.0",
"contributte/translation": "^v2.0.5",
"cweagans/composer-patches": "^1.7.3",
"darsyn/ip": "dev-develop as 5.0.0",
"darsyn/ip-doctrine": "^5.0.0",
"egulias/email-validator": "^4.0.2",
"guzzlehttp/guzzle": "^7.9.2",
"iqrf/iqrf-ide-macros-parser": "^v1.2.0",
"iqrf/iqrf-repository": "dev-master",
"justinrainbow/json-schema": "^6.0.0",
"latte/latte": "^v3.0.17",
"lcobucci/jwt": "^5.3.0",
"league/csv": "^9.16.0",
"nette/application": "^v3.2.5",
"nette/bootstrap": "^v3.2.4",
"nette/caching": "^v3.3.0",
"nette/di": "^v3.2.2",
"nette/finder": "^v3.0.0",
"nette/http": "^v3.3.0",
"nette/mail": "^v4.0.2",
"nette/neon": "^v3.4.3",
"nette/php-generator": "^v4.1.5",
"nette/robot-loader": "^v4.0.2",
"nette/safe-stream": "^v3.0.1",
"nette/security": "^v3.2.0",
"nette/utils": "v4.0.5 as v3.2.9",
"nettrine/annotations": "^v0.7.0",
"nettrine/cache": "^v0.3.0",
"nettrine/dbal": "^v0.8.2",
"nettrine/fixtures": "^v0.7.2",
"nettrine/migrations": "^v0.9.1",
"nettrine/orm": "^v0.8.4",
"php-http/guzzle7-adapter": "^1.0.0",
"phpmailer/phpmailer": "^v6.9.1",
"ramsey/uuid": "^4.7.6",
"ramsey/uuid-doctrine": "^2.1.0",
"ratchet/pawl": "^v0.4.1",
"spatie/ssl-certificate": "^2.6.7",
"symfony/process": "^v6.4.8",
"tracy/tracy": "^v2.10.7",
"z4kn4fein/php-semver": "^v3.0.0"
},
"require-dev": {
"contributte/qa": "^v0.3.1",
"mockery/mockery": "^1.6.12",
"nette/tester": "^v2.5.3",
"ninjify/nunjuck": "^v0.4.0",
"phpstan/phpstan": "^1.11.8",
"phpstan/phpstan-deprecation-rules": "^1.2.0",
"phpstan/phpstan-doctrine": "^1.4.8",
"phpstan/phpstan-mockery": "^1.1.2",
"phpstan/phpstan-nette": "^1.3.3",
"phpstan/phpstan-strict-rules": "^1.6.0",
"phpstan/phpstan-symfony": "^1.4.6",
"rector/rector": "^1.2.2"
},
"autoload": {
"psr-4": {
"App\\": "app"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"support": {
"email": "[email protected]",
"issues": "https://gitlab.iqrf.org/open-source/iqrf-gateway-webapp/issues",
"source": "https://gitlab.iqrf.org/open-source/iqrf-gateway-webapp"
},
"archive": {
"exclude": [
"/docker/",
"/docs/",
"/debian/",
"/install/"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"composer-exit-on-patch-failure": true
},
"config": {
"platform": {
"php": "8.1.2"
},
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/package-versions-deprecated": true,
"cweagans/composer-patches": true,
"php-http/discovery": true
}
}
}