-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
39 lines (39 loc) · 830 Bytes
/
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
{
"name": "sandrokeil/docker-selenium-grid-phpunit",
"description": "An example how to use a Selenium-Grid with Docker and PHPUnit/Mink",
"license": "BSD-3-Clause",
"type": "project",
"keywords": [
"php",
"phpunit",
"docker",
"selenium",
"grid",
"mink",
"example"
],
"authors": [
{
"name": "Sandro Keil",
"homepage": "https://sandro-keil.de",
"role": "maintainer"
}
],
"autoload-dev": {
"psr-4": {
"SakeTest\\Functional\\": "test/functional"
}
},
"require": {
"php": "^7.0"
},
"require-dev": {
"behat/mink": "^1.7",
"behat/mink-goutte-driver": "^1.2",
"behat/mink-selenium2-driver": "^1.3.1",
"brianium/paratest": "^0.13.2",
"phpunit/phpunit": "^5.2"
},
"minimum-stability": "dev",
"prefer-stable": true
}