daux.io/composer.json

55 lines
1.6 KiB
JSON
Raw Permalink Normal View History

2013-08-29 23:00:00 +02:00
{
2018-07-08 22:43:52 +02:00
"name": "d3/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": {
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",
"league/plates": "~3.1",
"myclabs/deep-copy": "^1.5",
"scrivo/highlight.php": "^9.15",
2019-11-28 22:36:26 +01:00
"symfony/console": "^5.0",
"symfony/http-foundation": "^5.0",
"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",
"webuni/front-matter": "^1.0.0",
2020-04-22 21:39:15 +02:00
"ext-json": "*"
},
"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": {
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",
2020-04-23 22:19:12 +02:00
"test:coverage-html": "build/phpunit --coverage-html=build/coverage",
2020-04-22 21:55:53 +02:00
"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
}