forked from Codeception/Codeception
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (62 loc) · 1.96 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
60
61
62
63
64
{
"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 <8.0",
"ext-json": "*",
"ext-mbstring": "*",
"phpunit/phpunit": ">4.8.20 <6.0",
"phpunit/php-code-coverage": ">=2.1.3",
"facebook/webdriver": ">=1.0.1 <2.0",
"guzzlehttp/guzzle": ">=4.1.4 <7.0",
"guzzlehttp/psr7": "~1.0",
"symfony/finder": ">=2.5 <3.1",
"symfony/console": ">=2.5 <3.1",
"symfony/event-dispatcher": ">=2.5 <3.1",
"symfony/yaml": ">=2.5 <3.1",
"symfony/browser-kit": ">=2.5 <3.1",
"symfony/css-selector": ">=2.5 <3.1",
"symfony/dom-crawler": ">=2.5 <3.1"
},
"require-dev": {
"monolog/monolog": "~1.8",
"facebook/php-sdk-v4": "~5.0",
"php-amqplib/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-4":{
"Codeception\\": "src\\Codeception",
"Codeception\\Extension\\": "ext"
}
},
"extra": {
"branch-alias": {
}
},
"bin":["codecept"],
"config": {
"platform": {}
}
}