-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
68 lines (68 loc) · 1.39 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
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "mhujer/yaml-sort-checker",
"type": "library",
"description": "YAML sort checker checks if your YML files are properly sorted to prevent merge conflicts",
"keywords": [
"yaml",
"sorter"
],
"homepage": "https://github.com/mhujer/yaml-sort-checked",
"license": "MIT",
"authors": [
{
"name": "Martin Hujer",
"email": "[email protected]",
"homepage": "https://www.martinhujer.cz"
}
],
"bin": [
"bin/yaml-sort-checker"
],
"require": {
"php": "~7.3 | ^8.0",
"symfony/console": "~3.4|~4.3|~5.0",
"symfony/yaml": "~3.4|~4.3|~5.0"
},
"require-dev": {
"consistence/coding-standard": "3.10.1",
"php-parallel-lint/php-parallel-lint": "1.2.0",
"phpstan/phpstan": "0.12.57",
"phpunit/phpunit": "9.4.3",
"slevomat/coding-standard": "6.4.1"
},
"autoload": {
"psr-4": {
"Mhujer\\YamlSortChecker\\": [
"src"
]
},
"classmap": [
"src"
]
},
"autoload-dev": {
"psr-4": {
"Mhujer\\YamlSortChecker\\": [
"tests"
]
},
"classmap": [
"tests"
]
},
"scripts": {
"build": [
"@phplint",
"@phpcs",
"@phpstan",
"@test"
],
"phplint": "parallel-lint -j 10 --exclude vendor .",
"phpcs": "phpcs --standard=ruleset.xml --extensions=php --encoding=utf-8 --tab-width=4 -sp bin src tests",
"phpstan": "@php vendor/bin/phpstan analyse bin src tests --level 7 --no-progress",
"test": "phpunit"
},
"config": {
"sort-packages": true
}
}