daux.io/composer.json

48 lines
1.3 KiB
JSON
Raw Normal View History

2013-08-29 23:00:00 +02:00
{
2017-09-13 21:43:40 +02:00
"name": "daux/daux.io",
2013-08-29 23:00:00 +02:00
"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"],
2017-09-13 21:43:40 +02:00
"homepage": "https://dauxio.github.io/",
2013-08-29 23:00:00 +02:00
"authors": [
2017-09-13 23:34:48 +02:00
{
"name": "Stéphane Goetz",
"homepage": "http://onigoetz.ch/"
},
2013-08-29 23:00:00 +02:00
{
"name": "Justin Walsh",
2013-08-29 23:18:53 +02:00
"homepage": "http://todaymade.com/"
2013-08-29 23:00:00 +02:00
}
],
"bin": ["bin/daux"],
2013-08-29 23:00:00 +02:00
"require": {
2018-03-05 08:46:03 +01:00
"php": ">=7.1.3",
2016-04-08 19:17:32 +02:00
"guzzlehttp/guzzle": "~6.0",
2018-09-26 21:38:07 +02:00
"league/commonmark": "^0.17",
"league/plates": "~3.1",
"myclabs/deep-copy": "^1.5",
2018-03-05 08:46:03 +01:00
"symfony/console": "^4.0",
"symfony/http-foundation": "^4.0",
"symfony/process": "^4.0",
2018-09-26 21:38:07 +02:00
"webuni/commonmark-table-extension": "0.8.*",
"webuni/front-matter": "^1.0.0",
"symfony/polyfill-intl-icu": "^1.9"
},
"suggest":{
"ext-intl": "Allows to translate the modified at date"
},
"autoload": {
2015-07-17 18:34:00 +02:00
"psr-4": {
"Todaymade\\Daux\\": "libs/"
}
2015-10-28 00:01:41 +01:00
},
2017-09-13 21:43:40 +02:00
"replace": {
"justinwalsh/daux.io": "*"
},
2015-10-28 00:01:41 +01:00
"require-dev": {
2018-09-26 21:38:07 +02:00
"phpunit/phpunit": "~7.3",
"mikey179/vfsStream": "^1.6"
2013-08-29 23:00:00 +02:00
}
2013-08-29 23:18:53 +02:00
}