-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 1.18 KB
/
composer.json
File metadata and controls
35 lines (35 loc) · 1.18 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
{
"name": "genesis/behat-sql-extension",
"type": "behat-extension",
"description": "SQL/PDO extension that facilitates fixture data creation on the fly for Behat",
"keywords": ["web", "test", "browser", "gui", "bdd", "behaviour", "testing", "test", "integration", "fixture", "PDO"],
"license": "MIT",
"authors": [
{
"name": "Abdul Wahhab Qureshi",
"email": "its.inevitable@hotmail.com"
}
],
"require": {
"php": "~5.5|~7.0",
"ext-pdo": "*",
"behat/behat": "~3.0"
},
"require-dev": {
"phpunit/phpunit": "~4.8"
},
"autoload": {
"psr-4": {
"Genesis\\SQLExtension\\": "src/",
"Genesis\\SQLExtension\\Tests\\": "tests/"
}
},
"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/behat-fail-aid": "Give your failures clarity and save time."
},
"scripts": {
"tests": "./vendor/bin/phpunit -c tests"
}
}