forked from grasmash/yaml-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 1015 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
36
37
38
{
"name": "grasmash/yaml-cli",
"description": "A command line tool for reading and manipulating yaml files.",
"type": "library",
"require": {
"php": ">=5.6",
"symfony/yaml": "^2.8.11|^3.2",
"symfony/console": "^2.8.11|^3.2",
"symfony/filesystem": "^2.8.11|^3.2",
"dflydev/dot-access-data": "^1.1.0"
},
"license": "MIT",
"authors": [
{
"name": "Matthew Grasmick"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Grasmash\\YamlCli\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Grasmash\\YamlCli\\Tests\\": "tests/src/"
}
},
"bin": [
"bin/yaml-cli"
],
"require-dev": {
"squizlabs/php_codesniffer": "^2.7",
"phpunit/phpunit": "^5.5.4",
"satooshi/php-coveralls": "^1.0"
}
}