summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: cbd8ede0ed77f3b499ffe05ff34ec670f2a373d6 (plain)
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
{
    "name": "grasmash/yaml-expander",
    "description": "Expands internal property references in a yaml file.",
    "type": "library",
    "require": {
        "php": ">=5.4",
        "symfony/yaml":                   "^2.8.11|^3",
        "dflydev/dot-access-data":        "^1.1.0"
    },
    "license": "MIT",
    "authors": [
        {
            "name": "Matthew Grasmick"
        }
    ],
    "minimum-stability": "dev",
    "prefer-stable": true,
    "autoload": {
        "psr-4": {
            "Grasmash\\YamlExpander\\":        "src/"
        }
    },
    "require-dev": {
        "squizlabs/php_codesniffer":      "^2.7",
        "phpunit/phpunit":                "^4.8|^5.5.4",
        "satooshi/php-coveralls": "^1.0"
    },
    "extra": {
        "branch-alias": {
            "dev-master": "1.x-dev"
        }
    }
}