forked from Codeception/Codeception
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (57 loc) · 1.76 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
57
58
59
{
"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.4.0",
"ext-json": "*",
"ext-mbstring": "*",
"phpunit/phpunit": "~4.5.0",
"facebook/webdriver": "~0.4|~0.5",
"guzzlehttp/guzzle": "~4.0|~5.0",
"symfony/finder": "~2.4",
"symfony/console": "~2.4",
"symfony/event-dispatcher": "~2.4",
"symfony/yaml": "~2.4",
"symfony/browser-kit": "~2.4",
"symfony/css-selector": "~2.4",
"symfony/dom-crawler": "~2.4,!=2.4.5"
},
"require-dev": {
"monolog/monolog": "~1.8",
"facebook/php-sdk": "~3.2",
"videlalvaro/php-amqplib": "~2.4",
"codeception/specify": "~0.3",
"pda/pheanstalk": "~2.0",
"flow/jsonpath": "~0.2"
},
"suggest": {
"codeception/phpbuiltinserver": "Extension to start and stop PHP built-in web server for your tests",
"codeception/specify": "BDD-style code blocks",
"codeception/verify": "BDD-style assertions",
"monolog/monolog": "Log test steps",
"phpseclib/phpseclib": "Extension required to use the SFTP option in the FTP Module."
},
"autoload":{
"psr-0":{
"Codeception":"src"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.1-dev"
}
},
"bin":["codecept"]
}