-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
56 lines (56 loc) · 1.39 KB
/
composer.json
File metadata and controls
56 lines (56 loc) · 1.39 KB
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
50
51
52
53
54
55
56
{
"name": "playwright-php/playwright-mink",
"description": "Mink driver powered by Playwright PHP (Chromium/Firefox/WebKit).",
"license": "MIT",
"type": "library",
"keywords": [
"mink",
"mink-driver",
"browser",
"behat",
"behat-driver",
"mink-extension",
"playwright-php",
"playwright"
],
"authors": [
{
"name": "Simon André",
"email": "smn.andre@gmail.com",
"homepage": "https://github.com/smnandre"
},
{
"name": "Playwright PHP Contributors",
"homepage": "https://github.com/playwright-php"
}
],
"homepage": "https://playwright-php.dev/mink",
"require": {
"php": "^8.2",
"behat/mink": "^1.10",
"playwright-php/playwright": "^1.0"
},
"require-dev": {
"mink/driver-testsuite": "dev-master",
"phpunit/phpunit": "^8.5.22 || ^9.5.11"
},
"autoload": {
"psr-4": {
"Playwright\\Mink\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Playwright\\Mink\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-main": "1.x-dev"
},
"thanks": {
"name": "playwright-php/playwright",
"url": "https://github.com/playwright-php/playwright"
}
}
}