-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 845 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 845 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": "webforge/behat-css-extension",
"description": "Helpers for css selection in behat tests",
"minimum-stability": "beta",
"license": "MIT",
"authors": [
{
"name": "Philipp Scheit",
"email": "p.scheit@ps-webforge.com"
}
],
"require": {
"php": ">=7.4",
"hamcrest/hamcrest-php": "^2.0",
"behat/mink-extension": "*",
"symfony/css-selector": ">=5"
},
"suggest": {
"behat/mink-selenium2-driver": "For Selenium 2/3 support with legacy JSONWire protocol",
"lullabot/mink-selenium2-driver": "For Selenium 4 support with W3C WebDriver protocol"
},
"autoload": {
"psr-4": {
"Webforge\\Behat\\": [
"src/"
]
}
},
"extra": {
"branch-alias": {
"dev-master": "4.0.x-dev"
}
},
"require-dev": {
"phpstan/phpstan": "^1.7"
}
}