-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json
44 lines (44 loc) · 924 Bytes
/
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
{
"name": "me-io/appium-driver-codeception",
"description": "appium driver for codeception framework",
"keywords": [
"BDD",
"automation testing",
"acceptance testing",
"functional testing",
"unit testing",
"tdd",
"android automation",
"ios automation",
"appium",
"appium driver",
"codeception"
],
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=7.0",
"codeception/codeception": "~2",
"phpunit/phpunit-selenium": "~4",
"symfony/console": "~4",
"squizlabs/php_codesniffer": "*"
},
"require-dev": {
"phpunit/phpunit": "~6",
"overtrue/phplint": "~1"
},
"autoload": {
"psr-4": {
"Appium\\": "src/",
"Parser\\": "cmd/Parser/",
"AppiumCodeceptionCLI\\": "cmd/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
}
}