-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 893 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 893 Bytes
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
{
"name": "nette/simple-blog",
"description": "Simple flat-file blog using nette framework",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Rixafy",
"email": "rixafy@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=8.0",
"nette/application": "^3.1",
"nette/bootstrap": "^3.1",
"nette/caching": "^3.0",
"nette/di": "^3.0",
"nette/finder": "^2.5",
"nette/forms": "^3.1",
"nette/http": "^3.1",
"nette/security": "^3.1",
"nette/utils": "^3.2",
"tracy/tracy": "^2.9",
"latte/latte": "^3.0",
"erusev/parsedown": "^1.7"
},
"autoload": {
"psr-4": {
"App\\": "app"
}
},
"config": {
"platform": {
"php": "8.0"
}
}
}