-
Notifications
You must be signed in to change notification settings - Fork 196
/
composer.json
56 lines (56 loc) · 1.93 KB
/
composer.json
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"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": {
"ext-json": "*",
"php": ">=8.1",
"guzzlehttp/guzzle": "~6.0 || ~7.0",
"league/commonmark": "^2.4.0",
"league/plates": "~3.1",
"scrivo/highlight.php": "^9.15",
"symfony/console": "^5.0|^6.0|^7.0",
"symfony/http-foundation": "^5.0|^6.0|^7.0",
"symfony/mime": "^5.0|^6.0|^7.0",
"symfony/polyfill-intl-icu": "^1.10",
"symfony/process": "^5.0|^6.0|^7.0",
"symfony/yaml": "^5.0|^6.0|^7.0"
},
"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",
"phpspec/prophecy-phpunit": "^2.0",
"phpunit/phpunit": "^10.0"
},
"scripts": {
"test": "APP_ENV=test php vendor/bin/phpunit",
"test:coverage": "APP_ENV=test XDEBUG_MODE=coverage php vendor/bin/phpunit --coverage-clover=coverage.xml --log-junit=test-report.xml",
"test:coverage-html": "APP_ENV=test XDEBUG_MODE=coverage php vendor/bin/phpunit --coverage-html=build/coverage",
"lint": "php build/php-cs-fixer fix --config=.php-cs-fixer.php --dry-run -v",
"lint:fix": "php build/php-cs-fixer fix --config=.php-cs-fixer.php"
}
}