-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
49 lines (49 loc) · 1.18 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
{
"name": "nette/web-project",
"description": "Nette: Standard Web Project",
"keywords": ["nette"],
"type": "project",
"license": ["MIT", "BSD-3-Clause", "GPL-2.0-only", "GPL-3.0-only"],
"scripts": {
"post-install-cmd": "chmod 777 temp && chmod 777 log",
"dev": "export NETTE_DEBUG=true && php -S localhost:8000 -t www",
"preview": "export NETTE_DEBUG=false && php -S localhost:8000 -t www",
"pint": "pint",
"phpstan": "phpstan analyse www app --level max"
},
"require": {
"php": ">= 8.1",
"nette/application": "^3.2.3",
"nette/bootstrap": "^3.2",
"nette/caching": "^3.2",
"nette/database": "^3.2",
"nette/di": "^3.2",
"nette/forms": "^3.2",
"nette/http": "^3.3",
"nette/mail": "^4.0",
"nette/robot-loader": "^4.0",
"nette/security": "^3.2",
"nette/utils": "^4.0",
"latte/latte": "^3.0",
"tracy/tracy": "^2.10",
"contributte/vite": "^0.2.0"
},
"require-dev": {
"nette/tester": "^2.5",
"symfony/thanks": "^1",
"laravel/pint": "^1.18",
"phpstan/phpstan": "^1.12",
"phpstan/phpstan-nette": "^1.3"
},
"autoload": {
"psr-4": {
"App\\": "app"
}
},
"minimum-stability": "stable",
"config": {
"allow-plugins": {
"symfony/thanks": true
}
}
}