-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·47 lines (47 loc) · 1.12 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
{
"name": "sikessem/docman",
"version": "0.1.0-a",
"type": "library",
"description": "Designer of user manual and documentation for developers",
"license": "CC0-1.0",
"keywords": [
"docman",
"sikessem"
],
"authors": [{
"homepage": "https://sikessem.com/",
"name": "SIGUI Kessé Emmanuel",
"email": "developer@sikessem.com",
"role": "Developer"
}],
"support": {
"source": "https://github.com/SIKessEm/DocMan",
"issues": "https://github.com/SIKessEm/DocMan/issues"
},
"require": {
"php": ">=8.0"
},
"autoload": {
"files": [
"ext/io.php"
],
"psr-4": {
"SIKessEm\\": "lib/",
"DocMan\\": "src/"
}
},
"autoload-dev": {
"files": [
"ext/docman.test.php"
]
},
"homepage": "https://github.com/SIKessEm/DocMan#readme",
"config": {
"vendor-dir": "pkg",
"bin-dir": "cli",
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}