-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
53 lines (53 loc) · 1.24 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
{
"name": "j13k/yaml-lint",
"description": "A compact command line utility for checking YAML file syntax",
"keywords": [
"yaml",
"yml",
"lint",
"syntax",
"cli",
"utility",
"symfony"
],
"homepage": "https://github.com/j13k/yaml-lint",
"license": "MIT",
"authors": [
{
"name": "John Fitzpatrick",
"homepage": "https://github.com/j13k"
}
],
"require": {
"php": ">=5.6",
"ext-json": "*",
"composer-runtime-api": "^2",
"symfony/yaml": "^2 || ^3 || ^4 || ^5 || ^6 || ^7"
},
"require-dev": {
"phpstan/phpstan": "^2",
"phpunit/phpunit": "^11",
"symplify/easy-coding-standard": "^12"
},
"extra": {
"branch-alias": {
"dev-master": "1.1.x-dev"
}
},
"autoload": {
"psr-4": {
"J13k\\": "src/J13k"
}
},
"bin": [
"bin/yaml-lint"
],
"scripts": {
"code-style": "./vendor/bin/ecs check .",
"code-analyse": "./vendor/bin/phpstan analyze --level 3 src",
"test": "./vendor/bin/phpunit"
},
"support": {
"issues": "https://github.com/j13k/yaml-lint/issues"
}
}