-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
52 lines (52 loc) · 1.54 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
{
"name": "sspooky13/yaml-standards",
"type": "library",
"description": "Standards for yaml files ",
"keywords": ["yaml", "standards", "indent", "alphabetical", "inline", "space-between-groups", "empty-line-at-end", "service-aliasing", "checker", "yaml-standards", "fixer"],
"homepage": "https://github.com/sspooky13/yaml-standards",
"license": "MIT",
"authors": [
{
"name": "Peter Turek",
"email": "peter.turek13@gmail.com"
}
],
"autoload": {
"psr-4": {
"YamlStandards\\": [
"src"
]
}
},
"autoload-dev": {
"psr-4": {
"YamlStandards\\": [
"tests"
]
}
},
"require": {
"php": "^7.2 || ^8.0",
"symfony/console": "^4.2.0 || ^5.0 || ^6.0 || ^7.0",
"symfony/config": "^4.2.0 || ^5.0 || ^6.0 || ^7.0",
"symfony/yaml": "^4.2.0 || ^5.0 || ^6.0 || ^7.0",
"sebastian/diff": "^3.0 || ^4.0 || ^5.0 || ^6.0"
},
"require-dev": {
"phing/phing": "^2.17.4",
"php-parallel-lint/php-parallel-lint": "^1.3.2",
"phpstan/phpstan": "^0.12.100",
"phpstan/phpstan-phpunit": "^0.12.22",
"phpunit/phpunit": "^8.5.14 || ^9.0 || ^10.0 || ^11.0",
"shopsys/coding-standards": "^9.1.3",
"symfony/var-dumper": "^5.4.29"
},
"bin": [
"bin/yaml-standards"
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}