-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
35 lines (35 loc) · 1.16 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
{
"name": "genesis/behat-fail-aid",
"description": "Get more out of your test suite by getting it to work with you when tests fail. Screenshots and more. Works with Goutte and MinkExtension.",
"keywords": ["behat", "behat-screenshot", "screenshot", "error", "fail", "behat-fail", "behat-error", "behat-exception"],
"license": "MIT",
"authors": [
{
"name": "Abdul Wahhab Qureshi"
}
],
"require": {
"behat/mink": "*@stable",
"behat/mink-extension": "~2.0",
"behat/mink-selenium2-driver": "~1.3"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"behat/behat": "^3.5",
"behat/mink-goutte-driver": "^1.2",
"ciaranmcnulty/behat-localwebserverextension": "^1.1"
},
"autoload": {
"psr-4": {
"FailAid\\": "src/"
}
},
"suggest": {
"genesis/sql-data-mods": "Extends behat-sql-extension to provide a powerful and simple framework to manage your data modules.",
"genesis/test-routing": "Simplistic routing that can extend main app routing for testing purposes.",
"genesis/db-backup-restore": "Quickly backup and restore your database."
},
"scripts": {
"tests": "./vendor/bin/phpunit -c tests"
}
}