Security update for permissions_by_term
[yaffs-website] / vendor / behat / gherkin / composer.json
1 {
2     "name":         "behat/gherkin",
3     "description":  "Gherkin DSL parser for PHP 5.3",
4     "keywords":     ["BDD", "parser", "DSL", "Behat", "Gherkin", "Cucumber"],
5     "homepage":     "http://behat.org/",
6     "type":         "library",
7     "license":      "MIT",
8     "authors":      [
9         {
10             "name":      "Konstantin Kudryashov",
11             "email":     "ever.zet@gmail.com",
12             "homepage":  "http://everzet.com"
13         }
14     ],
15
16     "require": {
17         "php": ">=5.3.1"
18     },
19
20     "require-dev": {
21         "symfony/yaml": "~2.3|~3",
22         "symfony/phpunit-bridge": "~2.7|~3",
23         "phpunit/phpunit": "~4.5|~5"
24     },
25
26     "suggest": {
27         "symfony/yaml":   "If you want to parse features, represented in YAML files"
28     },
29
30     "autoload": {
31         "psr-0": {
32             "Behat\\Gherkin":   "src/"
33         }
34     },
35
36     "autoload-dev": {
37         "psr-4": {
38             "Tests\\Behat\\": "tests/Behat/"
39         }
40     },
41
42     "extra": {
43         "branch-alias": {
44             "dev-master": "4.4-dev"
45         }
46     }
47 }