forked from Behat/Gherkin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 1.09 KB
/
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
{
"name": "behat/gherkin",
"description": "Gherkin DSL parser for PHP 5.3",
"keywords": ["BDD", "parser", "DSL", "Behat", "Symfony2"],
"homepage": "http://behat.org/",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Konstantin Kudryashov",
"email": "[email protected]",
"homepage": "http://everzet.com"
}
],
"require": {
"php": ">=5.3.1",
"symfony/finder": ">=2.0,<2.2-dev"
},
"require-dev": {
"symfony/yaml": ">=2.0,<2.2-dev",
"symfony/translation": ">=2.0,<2.2-dev",
"symfony/config": ">=2.0,<2.2-dev"
},
"suggest": {
"symfony/yaml": "If you want to parse features, represented in YAML files",
"symfony/translation": "If you want to use Symfony2 translations adapter",
"symfony/config": "If you want to use Config component to manage resources"
},
"autoload": {
"psr-0": {
"Behat\\Gherkin": "src/"
}
}
}