-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
32 lines (32 loc) · 881 Bytes
/
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
{
"name": "czukowski/phpunit-mock-dibi",
"type": "library",
"description": "Dibi mocking helpers for PHPUnit",
"keywords": ["phpunit", "dibi", "database", "mock"],
"homepage": "https://github.com/czukowski/phpunit-mock-dibi",
"license": "MIT",
"authors": [
{
"name": "Korney Czukowski",
"homepage": "http://xn----0tbl7bn.com"
}
],
"support": {
"issues": "https://github.com/czukowski/phpunit-mock-dibi/issues"
},
"require": {
"czukowski/phpunit-mock-db": "^7.0 || >= 8.2",
"czukowski/phpunit-sql": "^7.0.2 || ^8.0 || ^9.0",
"dibi/dibi": "4.2.x-dev"
},
"autoload": {
"psr-4": {
"Cz\\PHPUnit\\MockDibi\\": "classes"
}
},
"autoload-dev": {
"psr-4": {
"Cz\\PHPUnit\\MockDibi\\": "tests"
}
}
}