-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
54 lines (54 loc) · 1.29 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
{
"name": "kumbia/dokum",
"description": "Dokum is an innovative web application designed for the visualization and management of manuals, allowing the download and conversion of Markdown files to HTML for an intuitive reading experience.",
"keywords": [
"Dokum",
"manual viewer",
"Markdown to HTML conversion",
"manual management",
"web application for manuals",
"manual navigation",
"HTML formatted manuals",
"manual comments",
"manual search",
"online manuals",
"KumbiaPHP",
"manual platform"
],
"type": "project",
"homepage": "https://kumbiaphp.com",
"support": {
"issues": "https://github.com/KumbiaPHP/dokum/issues",
"slack": "https://slack.kumbiaphp.com"
},
"authors": [
{
"name": "Kumbia Community",
"homepage": "https://github.com/KumbiaPHP/dokum/graphs/contributors"
}
],
"require": {
"php": ">=8.0",
"ext-zip": "*",
"erusev/parsedown": "^1.7",
"kumbia/framework": "^1"
},
"require-dev": {
"phpunit/phpunit": "^9"
},
"autoload": {
"psr-4": {
"Dokum\\": "dokum/app/"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"funding": [
{
"type": "Open Collective",
"url": "https://opencollective.com/kumbiaphp"
}
]
}