-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
39 lines (39 loc) · 1 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
{
"type": "library",
"name": "mindplay/sql",
"description": "Database framework and query builder",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Rasmus Schultz",
"email": "[email protected]",
"role": "Maintainer"
}
],
"autoload": {
"psr-4": {
"mindplay\\sql\\": "src/"
}
},
"require": {
"php": ">=8.1",
"ext-pdo": "*",
"mindplay/unbox": "^3",
"psr/log": "*"
},
"require-dev": {
"mindplay/testies": "^1.0",
"mindplay/benchpress": "^0.1",
"mockery/mockery": "^1.5.1",
"phpunit/php-code-coverage": "^9.2.19",
"phpstan/phpstan": "^1.11"
},
"suggest": {
"ext-pdo_pgsql": "for PostgreSQL support (duh.)",
"ext-pdo_mysql": "for MySQL support (hello, Captain Obvious.)"
},
"scripts": {
"test": "XDEBUG_MODE=coverage php test/test.php",
"bench": "php test/benchmark.php"
}
}