forked from Behat/Behat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
32 lines (32 loc) · 1.11 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
{
"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.1",
"behat/gherkin": ">=2.2.0,<2.2.x-dev",
"symfony/console": ">=2.0.0,<2.1.x-dev",
"symfony/config": ">=2.0.0,<2.1.x-dev",
"symfony/dependency-injection": ">=2.0.0,<2.1.x-dev",
"symfony/event-dispatcher": ">=2.0.0,<2.1.x-dev",
"symfony/translation": ">=2.0.0,<2.1.x-dev",
"symfony/yaml": ">=2.0.0,<2.1.x-dev",
"symfony/finder": ">=2.0.0,<2.1.x-dev"
},
"autoload": {
"psr-0": {
"Behat\\Behat": "src/"
}
},
"bin": ["bin/behat"]
}