-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
28 lines (28 loc) · 824 Bytes
/
Copy pathcomposer.json
File metadata and controls
28 lines (28 loc) · 824 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
{
"name": "lazyblog/lazyblog",
"description": "Simple personal blog: PHP + Markdown files, CRT phosphor terminal design.",
"type": "project",
"license": "MIT",
"require": {
"php": "^8.2",
"chillerlan/php-qrcode": "^6.0",
"lbuchs/webauthn": "^2",
"league/commonmark": "^2.5",
"symfony/yaml": "^7.0",
"vlucas/phpdotenv": "^5.6"
},
"suggest": {
"ext-imagick": "Required only for series cover upload (ordered Bayer dither). Without it, manifest title/description still work; cover upload is disabled."
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"config": {
"sort-packages": true,
"optimize-autoloader": true
},
"minimum-stability": "stable",
"prefer-stable": true
}