-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 loc) · 1.1 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
{
"name" : "html-go/html-go",
"description" : "Databaseless, flat-file, blogging system",
"type" : "project",
"homepage" : "https://html-go.com",
"license" : "MIT",
"authors" : [{
"name" : "Marc L. Veary",
"homepage" : "https://veary.org",
"role" : "Owner"
}
],
"require" : {
"php" : ">=8.0",
"twig/twig" : "~3.3",
"erusev/parsedown" : "~1.7",
"jbroadway/urlify" : "~1.2"
},
"config" : {
"vendor-dir" : "system/vendor"
},
"autoload" : {
"files" : [
"system/core/constants.php",
"system/core/dispatcher.php",
"system/core/functions.php"
],
"psr-4" : {
"html_go\\" : "system/core/classes"
}
},
"autoload-dev" : {
"psr-4" : {
"html_go\\" : [
"tests/admin",
"tests/core"
]
}
},
"require-dev" : {
"phpunit/phpunit" : "~9.5",
"squizlabs/php_codesniffer" : "~3.6",
"phpstan/phpstan" : "~0.12"
},
"keywords" : [
"php8",
"blog",
"databaseless"
],
"support" : {
"source" : "https://github.com/ColonelBlimp/html-go",
"issues" : "https://github.com/ColonelBlimp/html-go/issues",
"wiki" : "https://github.com/ColonelBlimp/html-go/wiki"
}
}