forked from magikid/MinkExtension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.05 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
{
"name": "friends-of-behat/mink-extension",
"type": "behat-extension",
"description": "Mink extension for Behat",
"keywords": [
"web",
"test",
"browser",
"gui"
],
"homepage": "http://extensions.behat.org/mink",
"license": "MIT",
"authors": [
{
"name": "Konstantin Kudryashov",
"email": "[email protected]"
},
{
"name": "Christophe Coevoet",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"behat/behat": "^3.0.5",
"behat/mink": "^1.5",
"symfony/config": "^4.4 || ^5.0 || ^6.0"
},
"replace": {
"behat/mink-extension": "self.version"
},
"require-dev": {
"behat/mink-goutte-driver": "^1.0|^2.0",
"phpspec/phpspec": "^6.0 || ^7.0 || 7.1.x-dev"
},
"extra": {
"branch-alias": {
"dev-master": "2.1.x-dev"
}
},
"autoload": {
"psr-0": {
"Behat\\MinkExtension": "src/"
}
}
}