forked from Codeception/Codeception
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (37 loc) · 1.05 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
{
"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"
}
],
"require":{
"php":">=5.3.3",
"behat/mink": "1.4@stable",
"phpunit/phpunit": "3.7.*@stable",
"fabpot/goutte": "@stable",
"behat/mink-goutte-driver": "*",
"behat/mink-selenium-driver": "*",
"behat/mink-selenium2-driver": "*",
"behat/mink-zombie-driver": "*",
"monolog/monolog": "*",
"symfony/finder": "*",
"symfony/console": "*",
"symfony/event-dispatcher": "*",
"symfony/yaml": "*",
"videlalvaro/php-amqplib": "2.*"
},
"autoload":{
"psr-0":{
"Codeception":"src"
}
},
"bin":["codecept"]
}