-
Notifications
You must be signed in to change notification settings - Fork 34
/
composer.json
56 lines (52 loc) · 1.5 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
56
{
"name": "behat/common-contexts",
"description": "Commonly used contexts for Behat",
"keywords": ["BDD", "Behat", "Symfony2", "Context"],
"homepage": "http://behat.org/",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Konstantin Kudryashov",
"email": "[email protected]",
"homepage": "http://everzet.com"
},
{
"name": "Johannes M. Schmitt",
"email": "[email protected]",
"homepage": "https://github.com/schmittjoh"
},
{
"name": "Jakub Zalas",
"email": "[email protected]",
"homepage": "http://www.zalas.eu/"
},
{
"name": "Geoffrey Bachelet",
"email": "[email protected]",
"homepage": "https://github.com/ubermuda"
}
],
"require": {
"php": ">=5.3.1",
"behat/behat": "~2.2",
"phpunit/phpunit": "~4.0"
},
"suggest": {
"behat/symfony2-extension": "*",
"behat/mink-extension": "*",
"doctrine/doctrine-bundle": "*",
"doctrine/data-fixtures": "*",
"kriswallsmith/buzz": "~0.5"
},
"autoload": {
"psr-0": {
"Behat\\CommonContexts": ""
}
},
"extra": {
"branch-alias": {
"dev-master": "1.2.x-dev"
}
}
}