-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.42 KB
/
Copy pathcomposer.json
File metadata and controls
52 lines (52 loc) · 1.42 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
{
"name": "jampire/toc-markdown-extra",
"description": "Adds Table of Contents capability to PHP Markdown Extra package",
"homepage": "https://github.com/Jampire/toc-markdown-extra",
"license": "MIT",
"keywords": [
"TOC",
"Table of Contents",
"PHP Markdown Extra",
"markdown",
"extra"
],
"authors": [
{
"name": "Dzianis Kotau",
"email": "[email protected]",
"role": "Developer",
"homepage": "https://github.com/Jampire"
},
{
"name": "Dragonfly Development Inc.",
"email": "[email protected]",
"homepage": "http://dflydev.com"
},
{
"name": "Beau Simensen",
"email": "[email protected]",
"homepage": "http://beausimensen.com"
}
],
"require": {
"php": ">=5.3.0",
"michelf/php-markdown": "^1.9"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "^5.7|^6.0|^8.4",
"jakub-onderka/php-parallel-lint": "^1.0",
"jakub-onderka/php-console-highlighter": "^0.4.0",
"squizlabs/php_codesniffer": "^2.3|^3.5"
},
"autoload": {
"psr-4": {
"Jampire\\Markdown\\Toc\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Jampire\\Markdown\\Toc\\Test\\": "tests/"
}
}
}