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
|
|
|
}
|
|
|
|
],
|
2016-07-27 23:27:51 +02:00
|
|
|
"bin": ["bin/daux"],
|
2013-08-29 23:00:00 +02:00
|
|
|
"require": {
|
2019-11-28 22:36:26 +01:00
|
|
|
"php": ">=7.2",
|
2016-04-08 19:17:32 +02:00
|
|
|
"guzzlehttp/guzzle": "~6.0",
|
2019-11-28 22:36:26 +01:00
|
|
|
"league/commonmark": "^1.0.0",
|
2016-07-28 00:14:26 +02:00
|
|
|
"league/plates": "~3.1",
|
|
|
|
"myclabs/deep-copy": "^1.5",
|
2019-12-09 19:21:16 +01:00
|
|
|
"scrivo/highlight.php": "^9.15",
|
2019-11-28 22:36:26 +01:00
|
|
|
"symfony/console": "^5.0",
|
|
|
|
"symfony/http-foundation": "^5.0",
|
2019-12-09 19:21:16 +01:00
|
|
|
"symfony/mime": "^5.0",
|
2018-11-30 21:09:46 +01:00
|
|
|
"symfony/polyfill-intl-icu": "^1.10",
|
2019-11-28 22:36:26 +01:00
|
|
|
"symfony/process": "^5.0",
|
2020-04-22 21:39:15 +02:00
|
|
|
"webuni/front-matter": "^1.0.0",
|
|
|
|
"ext-json": "*"
|
2018-09-21 22:11:49 +02:00
|
|
|
},
|
|
|
|
"suggest":{
|
|
|
|
"ext-intl": "Allows to translate the modified at date"
|
2015-04-21 17:11:43 +02:00
|
|
|
},
|
|
|
|
"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": {
|
2019-03-04 10:26:38 +01:00
|
|
|
"mikey179/vfsstream": "^1.6"
|
2019-05-24 23:25:32 +02:00
|
|
|
},
|
|
|
|
"scripts": {
|
2020-04-22 21:55:53 +02:00
|
|
|
"test": "build/phpunit",
|
|
|
|
"lint": "build/php-cs-fixer fix --config=.php_cs --dry-run -v",
|
|
|
|
"lint:fix": "build/php-cs-fixer fix --config=.php_cs"
|
2013-08-29 23:00:00 +02:00
|
|
|
}
|
2013-08-29 23:18:53 +02:00
|
|
|
}
|