summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: d2d41bd83ad9e4e4f18acc161b77956d9b7c47d9 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
    "name":         "behat/gherkin",
    "description":  "Gherkin DSL parser for PHP 5.3",
    "keywords":     ["BDD", "parser", "DSL", "Behat", "Gherkin", "Cucumber"],
    "homepage":     "http://behat.org/",
    "type":         "library",
    "license":      "MIT",
    "authors":      [
        {
            "name":      "Konstantin Kudryashov",
            "email":     "ever.zet@gmail.com",
            "homepage":  "http://everzet.com"
        }
    ],

    "require": {
        "php": ">=5.3.1"
    },

    "require-dev": {
        "symfony/yaml": "~2.3|~3|~4",
        "symfony/phpunit-bridge": "~2.7|~3|~4",
        "phpunit/phpunit": "~4.5|~5"
    },

    "suggest": {
        "symfony/yaml":   "If you want to parse features, represented in YAML files"
    },

    "autoload": {
        "psr-0": {
            "Behat\\Gherkin":   "src/"
        }
    },

    "autoload-dev": {
        "psr-4": {
            "Tests\\Behat\\": "tests/Behat/"
        }
    },

    "extra": {
        "branch-alias": {
            "dev-master": "4.4-dev"
        }
    }
}