-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 1.34 KB
/
Copy pathcomposer.json
File metadata and controls
40 lines (40 loc) · 1.34 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
{
"name": "keinos/parsedown-toc",
"description": "Table of Contents Extension for Parsedown, the Parser for Markdown.",
"keywords": ["markdown", "parser", "extension"],
"homepage": "https://github.com/KEINOS/parsedown-extension_table-of-contents/",
"authors": [
{
"name": "KEINOS",
"homepage": "https://github.com/KEINOS",
"role": "Maintainer"
},
{
"name": "CONTRIBUTORS",
"homepage": "https://github.com/KEINOS/parsedown-extension_table-of-contents/graphs/contributors",
"role": "Contributor"
}
],
"require": {
"php": ">=5.5.0 <=8.4",
"ext-mbstring": "*",
"erusev/parsedown": "1.7.4"
},
"autoload": {
"files": ["Extension.php"]
},
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"archive": {
"exclude": ["/examples", "/tests", "/docs", "/.github", "/.phpdoc", "/.docker-compose.yml"]
},
"scripts": {
"test": "./tests/run-tests.sh",
"test-docker": "docker compose run --rm max",
"test-docker-oldest": "docker compose run --rm oldest",
"test-docker-min": "docker compose run --rm min",
"test-docker-latest": "docker compose run --rm latest",
"phpdoc": "docker compose run --rm phpdoc"
}
}