-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
39 lines (39 loc) · 1.44 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
{
"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.3.0",
"ext-mbstring": "*",
"erusev/parsedown": "^1.7"
},
"autoload": {
"files": ["Extension.php"]
},
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"archive": {
"exclude": ["/samples", "/tests", "/.travis.yml"]
},
"scripts": {
"test": "./tests/run-tests.sh",
"test-docker": "docker run --rm --user root -v $(pwd):/app php:cli /app/tests/run-tests.sh",
"test-docker-php5": "docker run --rm --user root -v $(pwd):/app php:5-cli-alpine /app/tests/run-tests.sh",
"test-docker-php5.3": "docker run --rm --user root -v $(pwd):/app php:5.3.29-cli /app/tests/run-tests.sh",
"test-docker-php8": "docker run --rm --user root -v $(pwd):/app keinos/php8-jit /app/tests/run-tests.sh"
}
}