-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
61 lines (54 loc) · 988 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "phpgt/database",
"description": "Database API organisation.",
"type": "library",
"require": {
"php": ">=8.1",
"ext-PDO": "*",
"phpgt/config": "^v1.1.0",
"phpgt/cli": "^1.3",
"greenlion/php-sql-parser": "^4.6"
},
"require-dev": {
"ext-sqlite3": "*",
"phpstan/phpstan": "^v1.10",
"phpunit/phpunit": "^10.1",
"phpmd/phpmd": "^2.13",
"squizlabs/php_codesniffer": "^3.7"
},
"license": "MIT",
"authors": [
{
"name": "Greg Bowler",
"email": "greg.bowler@g105b.com"
},
{
"name": "James Fellows",
"email": "james.fellows@finanscapes.com"
}
,
{
"name": "Christopher Paul Shaw",
"email": "i-am-in-your-code-stealing-your-lulz@chris-shaw.com"
}
],
"autoload": {
"psr-4": {
"Gt\\Database\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"Gt\\Database\\Test\\": "./test/phpunit"
}
},
"bin": [
"bin/migrate"
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/PhpGt"
}
]
}