-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
48 lines (48 loc) · 1.18 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
40
41
42
43
44
45
46
47
48
{
"name": "bookdown/bookdown",
"type": "library",
"description": "Provides DocBook-like rendering of Markdown files.",
"keywords": [
"docbook",
"markdown",
"manual",
"documentation",
"static site"
],
"homepage": "https://github.com/bookdown/Bookdown.Bookdown",
"license": "MIT",
"authors": [
{
"name": "Bookdown.Bookdown Contributors",
"homepage": "https://github.com/bookdown/Bookdown.Bookdown/contributors"
}
],
"require": {
"php": ">=5.6.0",
"aura/cli": "~2.0",
"aura/html": "~2.0",
"aura/view": "~2.0",
"league/commonmark": "~0.0",
"psr/log": "~1.0",
"bookdown/themes": "~1.0"
},
"require-dev": {
"webuni/commonmark-table-extension": "~0.6",
"webuni/commonmark-attributes-extension": "~0.5",
"phpunit/phpunit": "~5.0",
"pds/skeleton": "~1.0"
},
"autoload": {
"psr-4": {
"Bookdown\\Bookdown\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bookdown\\Bookdown\\": "tests/"
}
},
"bin": [
"bin/bookdown"
]
}