forked from Behat/Behat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (49 loc) · 1.61 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
52
53
54
55
{
"name": "behat/behat",
"description": "Scenario-oriented BDD framework for PHP 5.3",
"keywords": ["BDD", "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.3",
"behat/gherkin": "~3.1.2",
"symfony/console": "~2.1",
"symfony/config": "~2.1",
"symfony/dependency-injection": "~2.1",
"symfony/event-dispatcher": "~2.1",
"symfony/translation": "~2.1",
"symfony/yaml": "~2.1",
"symfony/finder": "~2.1",
"symfony/class-loader": "~2.1"
},
"require-dev": {
"symfony/process": "~2.1",
"phpunit/phpunit": "~3.7.28"
},
"suggest": {
"behat/symfony2-extension": "for integration with Symfony2 web framework",
"behat/yii-extension": "for integration with Yii web framework",
"behat/mink-extension": "for integration with Mink testing framework"
},
"autoload": {
"psr-0": {
"Behat\\Behat": "src/",
"Behat\\Testwork": "src/",
"Behat\\Transliterator": "src/"
}
},
"bin": ["bin/behat"],
"extra": {
"branch-alias": {
"dev-develop": "3.0-dev"
}
}
}