-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.26 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.26 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
{
"name": "ddfsn/markdown-docs",
"description": "Markdown Docs is a markdown documentation manager.",
"license": "MIT",
"keywords": ["laravel", "markdown", "documentation", "distortedfusion", "ddfsn"],
"authors": [
{
"name": "Kevin Dierkx",
"email": "kevin@distortedfusion.com"
}
],
"require": {
"php": "^8.0",
"illuminate/support": "*",
"league/commonmark": "^2.7",
"symfony/yaml": "^6.0 | ^7.0 | ^8.0"
},
"require-dev": {
"distortedfusion/php-cs-fixer-config": "^2.1"
},
"autoload": {
"psr-4": {
"DistortedFusion\\MarkdownDocs\\": "src/"
}
},
"scripts": {
"phpcs-fix" : "php-cs-fixer fix --using-cache=no --allow-risky=yes --ansi",
"phpcs": "php-cs-fixer fix -v --diff --dry-run --allow-risky=yes --ansi",
"test": [
"@phpcs"
]
},
"scripts-descriptions": {
"phpcs": "Runs coding style test suite",
"test": "Runs all tests"
},
"extra": {
"laravel": {
"providers": [
"DistortedFusion\\MarkdownDocs\\MarkdownDocsServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}