This repository has been archived by the owner on Dec 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
59 lines (59 loc) · 1.92 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
49
50
51
52
53
54
55
56
57
58
59
{
"name": "bex/behat-screenshot",
"version": "2.1.0",
"type": "library",
"description": "Extension for behat to help debug failing scenarios",
"keywords": ["tdd","bdd","behat", "behat-screenshot"],
"homepage": "https://github.com/elvetemedve/behat-screenshot",
"license": "MIT",
"authors": [
{
"name": "Tibor Kotosz",
"email": "[email protected]",
"homepage": "https://github.com/tkotosz",
"role": "Developer"
},
{
"name": "Geza Buza",
"email": "[email protected]",
"homepage": "https://twitter.com/medve540",
"role": "Developer"
}
],
"require": {
"php": ">=5.5",
"behat/behat": "^3.0.0",
"friends-of-behat/mink-extension": "^2",
"bex/behat-extension-driver-locator": "^1.0|^2.0",
"symfony/filesystem": "^2.7|^3.0|^4.0|^5.0",
"symfony/finder": "^2.7|^3.0|^4.0|^5.0"
},
"require-dev": {
"bex/behat-test-runner": "^1.3.1",
"phpspec/phpspec": "^2.5",
"jakoch/phantomjs-installer": "^2.1.1-p07",
"behat/mink-selenium2-driver": "^1.3.0",
"bex/behat-screenshot-image-driver-dummy": "^1.0"
},
"suggest": {
"bex/behat-screenshot-image-driver-uploadpie": "Allows to upload the screenshot to uploadpie.com",
"bex/behat-screenshot-image-driver-img42": "Allows to upload the screenshot to img42.com",
"bex/behat-screenshot-image-driver-unsee": "Allows to upload the screenshot to unsee.cc"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-0": {
"Bex\\Behat\\ScreenshotExtension\\": "src"
}
},
"scripts": {
"post-install-cmd": [
"PhantomInstaller\\Installer::installPhantomJS"
],
"post-update-cmd": [
"PhantomInstaller\\Installer::installPhantomJS"
]
}
}