forked from AydinHassan/cli-md-renderer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 1.15 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
{
"name": "php-school/cli-md-renderer",
"description": "A CLI Markdown Render for league/commonmark compatible AST",
"license": "MIT",
"authors": [
{
"name": "Aydin Hassan",
"email": "[email protected]"
}
],
"require" : {
"php" : ">=7.1",
"league/commonmark": "^1.5.6",
"php-school/keylighter": "^0.8.4",
"kevinlebrun/colors.php": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0 | ^8.0 | ^9.0",
"squizlabs/php_codesniffer": "^3.0",
"phpstan/phpstan": "^0.12.50"
},
"autoload" : {
"psr-4" : {
"PhpSchool\\CliMdRenderer\\": "src"
}
},
"autoload-dev": {
"psr-4": { "PhpSchool\\CliMdRendererTest\\": "test/" }
},
"scripts" : {
"cs" : [
"phpcs src --standard=PSR12 --encoding=UTF-8",
"phpcs test --standard=PSR12 --encoding=UTF-8"
],
"cs-fix" : [
"phpcbf src --standard=PSR12 --encoding=UTF-8",
"phpcbf test --standard=PSR12 --encoding=UTF-8"
],
"static": "phpstan --ansi analyse --level max src"
}
}