-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathcomposer.json
48 lines (42 loc) · 1.09 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
47
48
{
"name": "aik099/phpunit-mink",
"description": "Library for using Mink in PHPUnit tests. Supports session sharing between tests in a test case.",
"keywords": ["PHPUnit", "Selenium", "SauceLabs", "Sauce", "BrowserStack", "Mink", "Tests"],
"homepage": "http://github.com/minkphp/phpunit-mink",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Alexander Obuhovich",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6",
"behat/mink": "^1.8@dev",
"behat/mink-selenium2-driver": "~1.2",
"phpunit/phpunit": ">=4.8.35 <5|>=5.4.3",
"console-helpers/phpunit-compat": "^1.0.3"
},
"require-dev": {
"aik099/coding-standard": "dev-master",
"mockery/mockery": "~0.9|^1.5",
"yoast/phpunit-polyfills": "^1.0"
},
"autoload": {
"psr-4": {
"aik099\\PHPUnit\\": "library/aik099/PHPUnit",
"PimpleCopy\\Pimple\\": "library/PimpleCopy/Pimple"
}
},
"autoload-dev": {
"psr-4": {
"tests\\aik099\\PHPUnit\\": "tests/aik099/PHPUnit",
"tests\\PimpleCopy\\Pimple\\": "tests/PimpleCopy/Pimple"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.3.x-dev"
}
}
}