forked from FriendsOfBehat/MinkDebugExtension
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 1.2 KB
/
composer.json
File metadata and controls
40 lines (40 loc) · 1.2 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
{
"name": "lakion/mink-debug-extension",
"type": "behat-extension",
"description": "Debug extension for Behat",
"keywords": ["debug", "behat", "mink", "logging"],
"homepage": "https://github.com/Lakion/MinkDebugExtension",
"license": "MIT",
"authors": [
{
"name": "Kamil Kokot",
"email": "kamil@kokot.me",
"homepage": "http://kamil.kokot.me"
}
],
"require": {
"php": "^5.5.9|^7.0",
"behat/behat": "^3.0.5",
"behat/mink-extension": "^2.0.1"
},
"require-dev": {
"phpspec/phpspec": "^2.0",
"behat/mink-goutte-driver": "^1.1",
"behat/mink-selenium2-driver": "^1.2"
},
"suggest": {
"behat/mink-browserkit-driver": "To get request debug information included in log file",
"behat/mink-selenium2-driver": "To get screenshots"
},
"bin": [
"travis/tools/upload-screenshots",
"travis/tools/upload-textfiles",
"travis/tools/wait-for-port"
],
"autoload": {
"psr-4": { "Lakion\\Behat\\MinkDebugExtension\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Lakion\\Behat\\MinkDebugExtension\\spec\\": "spec/" }
}
}