-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 895 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 895 Bytes
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
{
"name": "codeception/lib-web",
"description": "Library containing files used by module-webdriver and lib-innerbrowser or module-phpbrowser",
"license": "MIT",
"type": "library",
"keywords": [
"codeception"
],
"authors": [
{
"name": "Gintautas Miselis"
}
],
"homepage": "https://codeception.com/",
"require": {
"php": "^8.2",
"ext-mbstring": "*",
"guzzlehttp/psr7": "^2.0",
"phpunit/phpunit": "^11.5 | ^12 | ^13",
"symfony/css-selector": ">=4.4.24 <9.0"
},
"require-dev": {
"php-webdriver/webdriver": "^1.12"
},
"conflict": {
"codeception/codeception": "<5.0.0-alpha3"
},
"autoload": {
"classmap": [
"src/"
]
},
"config": {
"classmap-authoritative": true,
"sort-packages": true
}
}