-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.63 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
{
"name": "genesis/sql-data-mods",
"type": "behat-extension",
"description": "SQL/PDO extension - extending capabilities provided by the original SQL API extension.",
"keywords": ["fixture", "behat-fixture", "db-fixture", "test-data", "behat-data", "test", "pdo", "behat", "sql", "testing", "bdd", "database", "mysql", "data"],
"license": "MIT",
"authors": [
{
"name": "Abdul Wahhab Qureshi",
"email": "[email protected]"
}
],
"require": {
"php": "~5.5|~7.0",
"genesis/behat-sql-extension": "~8.4"
},
"require-dev": {
"phpunit/phpunit": "~4.8",
"behat/behat": "^3.0",
"ciaranmcnulty/behat-localwebserverextension": "^1.1",
"behat/mink-extension": "^2.3",
"behat/mink-goutte-driver": "^1.2",
"genesis/behat-fail-aid": "^1.3"
},
"autoload": {
"psr-4": {
"Genesis\\DataMods\\": "src/",
"Genesis\\SQLExtensionWrapper\\": "src/",
"Genesis\\SQLExtensionWrapper\\Tests\\": "tests/",
"DataMod\\": "features/bootstrap/DataMod/"
}
},
"suggest": {
"genesis/behat-fail-aid": "Give your failures clarity and save time.",
"genesis/test-routing": "Simplistic routing that can extend main app routing for testing purposes.",
"genesis/db-backup-restore": "Quickly backup and restore your database.",
"genesis/behat-stats-logger": "Find exactly where your behat test suite is impacting performance."
},
"scripts": {
"tests": "./vendor/bin/phpunit -c tests && ./vendor/bin/behat --format=progress"
}
}