-
Notifications
You must be signed in to change notification settings - Fork 24
/
composer.json
49 lines (48 loc) · 1.25 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
{
"name":"codeception/module-webdriver",
"description":"WebDriver module for Codeception",
"keywords":["codeception", "browser-testing", "acceptance-testing"],
"homepage":"https://codeception.com/",
"type":"library",
"license":"MIT",
"authors":[
{
"name": "Michael Bodnarchuk"
},
{
"name": "Gintautas Miselis"
},
{
"name": "Zaahid Bateson"
}
],
"minimum-stability": "RC",
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-mbstring": "*",
"codeception/codeception": "^5.0.8",
"codeception/lib-web": "^1.0.1",
"codeception/stub": "^4.0",
"php-webdriver/webdriver": "^1.14.0",
"phpunit/phpunit": "^10.0 || ^11.0"
},
"suggest": {
"codeception/phpbuiltinserver": "Start and stop PHP built-in web server for your tests"
},
"autoload":{
"classmap": ["src/"]
},
"autoload-dev": {
"classmap": [
"tests/data/app/data.php",
"tests/unit/Codeception/Constraints/TestedWebElement.php"
],
"psr-4": {
"Tests\\Web\\": "tests/web/"
}
},
"config": {
"classmap-authoritative": true
}
}