-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.12 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.12 KB
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
56
57
58
{
"name": "saggre/phpdocumentor-markdown",
"description": "Markdown template for phpDocumentor3",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Saggre",
"email": "sakri.koskimies@hotmail.com"
}
],
"keywords": [
"phpdocumentor",
"phpdoc",
"markdown",
"ci",
"ai",
"documentation"
],
"require": {
},
"require-dev": {
"php": ">=8.1",
"ext-json": "*",
"cweagans/composer-patches": "^1.7",
"phpdocumentor/phpdocumentor": "3.8.0",
"phpunit/phpunit": "^10",
"symfony/filesystem": "^6.4"
},
"autoload": {
"psr-4": {
"PhpDocumentorMarkdown\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhpDocumentorMarkdown\\Test\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"create-docs": "phpdoc",
"create-docs:debug": "phpdoc -vvv"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"cweagans/composer-patches": true
}
},
"extra": {
"patches": {
"phpdocumentor/phpdocumentor": [
"./patches/phpdocumentor-resource-path.patch"
]
}
}
}