forked from mindplay-dk/sql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 989 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
33
34
35
36
37
38
39
{
"type": "library",
"name": "mindplay/sql",
"description": "Database framework and query builder",
"license": "MIT",
"authors": [
{
"name": "Rasmus Schultz",
"email": "[email protected]",
"role": "Maintainer"
},
{
"name": "Thomas Nordahl",
"email": "[email protected]",
"role": "Co-maintainer"
}
],
"autoload": {
"psr-4": {
"mindplay\\sql\\": "src/"
}
},
"require": {
"php": ">=5.5",
"ext-pdo": "*",
"mindplay/unbox": "^2",
"psr/log": "^1"
},
"require-dev": {
"mindplay/testies": "^0.3.2",
"mindplay/benchpress": "^0.1",
"mockery/mockery": "^0.9",
"phpunit/php-code-coverage": ">=2, <4"
},
"suggest": {
"ext-pdo_pgsql": "for PostgreSQL support (duh.)",
"ext-pdo_mysql": "for MySQL support (hello, Captain Obvious.)"
}
}