54 lignes
1.5 KiB
JSON
54 lignes
1.5 KiB
JSON
{
|
|
"name": "daux/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": "https://dauxio.github.io/",
|
|
"authors": [
|
|
{
|
|
"name": "Stéphane Goetz",
|
|
"homepage": "http://onigoetz.ch/"
|
|
},
|
|
{
|
|
"name": "Justin Walsh",
|
|
"homepage": "http://todaymade.com/"
|
|
}
|
|
],
|
|
"bin": ["bin/daux"],
|
|
"require": {
|
|
"php": ">=7.2",
|
|
"guzzlehttp/guzzle": "~6.0",
|
|
"league/commonmark": "^1.0.0",
|
|
"league/plates": "~3.1",
|
|
"myclabs/deep-copy": "^1.5",
|
|
"scrivo/highlight.php": "^9.15",
|
|
"symfony/console": "^5.0",
|
|
"symfony/http-foundation": "^5.0",
|
|
"symfony/mime": "^5.0",
|
|
"symfony/polyfill-intl-icu": "^1.10",
|
|
"symfony/process": "^5.0",
|
|
"webuni/front-matter": "^1.0.0",
|
|
"ext-json": "*"
|
|
},
|
|
"suggest":{
|
|
"ext-intl": "Allows to translate the modified at date"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Todaymade\\Daux\\": "libs/"
|
|
}
|
|
},
|
|
"replace": {
|
|
"justinwalsh/daux.io": "*"
|
|
},
|
|
"require-dev": {
|
|
"mikey179/vfsstream": "^1.6"
|
|
},
|
|
"scripts": {
|
|
"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"
|
|
}
|
|
}
|