forked from Codeception/Codeception
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (41 loc) · 1.16 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
{
"name":"codeception/codeception",
"description":"BDD-style testing framework",
"keywords":["BDD", "acceptance testing", "functional testing", "unit testing", "tdd"],
"homepage":"http://codeception.com/",
"type":"library",
"license":"MIT",
"authors":[
{
"name":"Michael Bodnarchuk",
"email":"[email protected]",
"homepage":"http://codegyre.com"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=5.3.3",
"behat/mink": "1.5.*",
"phpunit/phpunit": "3.7.*",
"facebook/webdriver": "*",
"behat/mink-goutte-driver": "1.0.*",
"behat/mink-selenium2-driver": "1.1.*",
"monolog/monolog": "*",
"symfony/finder": "~2.3",
"symfony/console": "~2.3",
"symfony/event-dispatcher": "~2.3",
"symfony/yaml": "~2.3"
},
"require-dev": {
"behat/mink-selenium-driver": "1.1.*",
"facebook/php-sdk": "3.*",
"behat/mink-zombie-driver": "1.1.*",
"videlalvaro/php-amqplib": "*"
},
"autoload":{
"psr-0":{
"Codeception":"src"
}
},
"bin":["codecept"]
}