forked from bdone/tfd7-documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·37 lines (37 loc) · 1.09 KB
/
composer.json
File metadata and controls
executable file
·37 lines (37 loc) · 1.09 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
{
"name": "justinwalsh/daux.io",
"type": "project",
"license": "MIT",
"description": "Documentation generator that uses a simple folder structure and Markdown files to create custom documentation on the fly",
"keywords": ["documentation", "docs", "markdown", "md"],
"homepage": "http://daux.io/",
"authors": [
{
"name": "Justin Walsh",
"homepage": "http://todaymade.com/"
}
],
"bin": ["bin/daux"],
"require": {
"guzzlehttp/guzzle": "~6.0",
"league/commonmark": "^0.15",
"league/plates": "~3.1",
"myclabs/deep-copy": "^1.5",
"php": ">=5.5",
"symfony/console": "~3.0",
"symfony/finder": "~3.0",
"webuni/commonmark-table-extension": "0.6.*",
"webuni/front-matter": "^0.2.0",
"symfony/process": "^3.1"
},
"autoload": {
"psr-4": {
"Todaymade\\Daux\\Extension\\": "daux/",
"Todaymade\\Daux\\": "libs/"
}
},
"require-dev": {
"phpunit/phpunit": "~5",
"mikey179/vfsStream": "^1.6"
}
}