forked from KreativniLab/nettecamp.cz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
65 lines (65 loc) · 1.42 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
{
"name": "nettecamp.cz/web",
"description": "Nette Camp: website",
"type": "project",
"license": ["MIT", "BSD-3-Clause", "GPL-2.0", "GPL-3.0"],
"require": {
"php": ">= 7.1",
"nette/application": "^3.0",
"nette/bootstrap": "^3.0",
"nette/caching": "^3.0",
"nette/database": "^3.0",
"nette/di": "^3.0",
"nette/finder": "^2.5",
"nette/forms": "^3.0",
"nette/http": "^3.0",
"nette/mail": "^3.0",
"nette/robot-loader": "^3.0",
"nette/safe-stream": "^2.4",
"nette/security": "^3.0",
"nette/utils": "^3.0",
"latte/latte": "^2.5",
"tracy/tracy": "^2.6",
"contributte/console": "^0.5",
"nextras/migrations": "^3.0",
"nextras/static-router": "v2.0.0",
"nextras/mail-panel": "^2.5",
"texy/texy": "~2.9.0",
"nittro/nette-bridges": "^2.0",
"ublaboo/mailing": "^1.2",
"nextras/orm": "^3.1"
},
"require-dev": {
"dg/composer-cleaner": "^2.1",
"phpstan/phpstan": "^0.12.3",
"phpstan/phpstan-nette": "^0.12.0",
"ninjify/qa": "^0.10.0"
},
"config": {
"discard-changes": true
},
"autoload": {
"classmap": ["app/Bootstrap.php"]
},
"autoload-dev": {
"psr-4": {
"NetteCamp\\PHPStan\\Reflections\\": ".phpstan/Reflections"
}
},
"scripts": {
"phpstan": "vendor/bin/phpstan analyze",
"lint": "linter app",
"cs": "codesniffer app",
"csf": "codefixer app",
"qa": [
"@lint",
"@phpstan",
"@cs"
]
},
"extra": {
"cleaner-ignore": {
"phpstan/phpstan-nette": true
}
}
}