-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
76 lines (68 loc) · 1.42 KB
/
composer.json
File metadata and controls
76 lines (68 loc) · 1.42 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "phpgt/database",
"description": "Database API organisation.",
"type": "library",
"require": {
"php": ">=8.3",
"ext-PDO": "*",
"phpgt/config": "^v1.1.0",
"phpgt/cli": "^1.3",
"greenlion/php-sql-parser": "^4.6",
"phpgt/sqlbuilder": "^1.0.1"
},
"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@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"
}
},
"scripts": {
"phpunit": "vendor/bin/phpunit --configuration phpunit.xml",
"phpunit:coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit --configuration phpunit.xml --coverage-text",
"phpstan": "vendor/bin/phpstan analyse --level 6 --memory-limit 1G src",
"phpcs": "vendor/bin/phpcs src --standard=phpcs.xml",
"phpmd": "vendor/bin/phpmd src/ text phpmd.xml",
"test": [
"@phpunit",
"@phpstan",
"@phpcs",
"@phpmd"
]
},
"bin": [
"bin/migrate"
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/PhpGt"
}
]
}