-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·57 lines (56 loc) · 1.47 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
{
"name": "jakubandrysek/pletacka",
"description": "System for monitoring ihe industrial production",
"homepage": "https://nette.org",
"type": "project",
"license": ["MIT"],
"authors": [
{
"name": "Jakub Andrýsek",
"homepage": "https://kubaandrysek.cz"
}
],
"require": {
"php": ">=8.0",
"nette/application": "^3.1",
"nette/bootstrap": "^3.1",
"nette/caching": "^3.1",
"nette/database": "^3.1",
"nette/di": "^3.0",
"nette/finder": "^2.5",
"nette/forms": "^3.1",
"nette/http": "^3.1",
"nette/mail": "^3.1",
"nette/robot-loader": "^3.3",
"nette/security": "^3.1",
"nette/utils": "^3.2",
"latte/latte": "^2.9",
"tracy/tracy": "^2.8",
"dg/adminer-custom": "^1.8",
"contributte/application": "^v0.5.1",
"contributte/bootstrap": "^0.5",
"contributte/cache": "^0.6",
"contributte/di": "^0.5",
"contributte/http": "^0.4.0",
"contributte/latte": "^0.5.0",
"contributte/tracy": "^0.5.0",
"apitte/core": "^v0.8.1",
"apitte/debug": "^0.8.0",
"apitte/openapi": "^v0.8.0",
"apitte/presenter": "^v0.8.0",
"apitte/negotiation": "^v0.8.0",
"jakubandrysek/chart": "^3.2.0",
"myclabs/php-enum": "^1.8.3"
},
"require-dev": {
"nette/tester": "^v2.3.5",
"phpstan/phpstan-nette": "^1.0.0"
},
"autoload": {
"classmap": ["app/", "tests/","app/Bootstrap.php"]
},
"minimum-stability": "stable",
"scripts": {
"phpstan": "phpstan analyse --level 5 --configuration phpstan.neon app bin www"
}
}