-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.07 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.07 KB
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
{
"name": "adbros/utils",
"description": "",
"type": "library",
"license": "MIT",
"require": {
"php": ">=7.1",
"nette/utils": "^2.4 || ^3.0"
},
"require-dev": {
"ninjify/coding-standard": "^0.10",
"ninjify/nunjuck": "^0.3.0",
"php-parallel-lint/php-console-highlighter": "^0.5",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-deprecation-rules": "^0.12",
"phpstan/phpstan-strict-rules": "^0.12",
"victorjonsson/markdowndocs": "^1.3"
},
"autoload": {
"psr-4": {
"Adbros\\Utils\\": "src/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"cs": [
"parallel-lint -e php,phpt --blame src tests --exclude tests/tmp",
"phpcs --standard=.ruleset.xml --extensions=php,phpt --colors -nsp"
],
"cs-fix": [
"phpcbf --standard=.ruleset.xml --extensions=php,phpt --colors -nsp"
],
"phpstan": [
"phpstan analyse -c .phpstan.neon"
],
"test": [
"tester -C tests"
],
"qa": [
"@cs",
"@phpstan",
"@test"
],
"phpdoc-generate": [
"phpdoc-md generate src > README.md"
]
}
}