-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 886 Bytes
/
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
{
"name": "petr-heinz/yaml-tools",
"type": "library",
"description": "A tool for easier maintenance of YAML config files.",
"license": "MIT",
"bin": [
"bin/yaml-tools"
],
"require": {
"php": "^7.1",
"friendsofphp/php-cs-fixer": "^2.13",
"symfony/console": "^4.1"
},
"require-dev": {
"jakub-onderka/php-console-highlighter": "^0.4.0",
"jakub-onderka/php-parallel-lint": "^1.0",
"phing/phing": "^2.16",
"phpstan/phpstan": "^0.10.5",
"phpunit/phpunit": "^7.4",
"symplify/easy-coding-standard": "^5.1"
},
"autoload": {
"psr-4": {
"PetrHeinz\\YamlTools\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PetrHeinz\\YamlTools\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
}
}