forked from Behat/Behat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (46 loc) · 1.46 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "behat/behat",
"description": "Scenario-oriented BDD framework for PHP 5.3",
"keywords": ["BDD", "ScenarioBDD", "StoryBDD", "Examples", "Scrum", "Agile", "User story", "Symfony", "business", "development", "testing", "documentation"],
"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.3",
"ext-mbstring": "*",
"behat/gherkin": "^4.5.1",
"behat/transliterator": "^1.2",
"symfony/console": "~2.7.40||^2.8.33||~3.3.15||^3.4.3||^4.0.3",
"symfony/config": "~2.3||~3.0||~4.0",
"symfony/dependency-injection": "~2.1||~3.0||~4.0",
"symfony/event-dispatcher": "~2.1||~3.0||~4.0",
"symfony/translation": "~2.3||~3.0||~4.0",
"symfony/yaml": "~2.1||~3.0||~4.0",
"psr/container": "^1.0",
"container-interop/container-interop": "^1.2"
},
"require-dev": {
"symfony/process": "~2.5|~3.0|~4.0",
"phpunit/phpunit": "^4.8.36|^6.3",
"herrera-io/box": "~1.6.1"
},
"autoload": {
"psr-0": {
"Behat\\Behat": "src/",
"Behat\\Testwork": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.5.x-dev"
}
},
"bin": ["bin/behat"]
}