-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
81 lines (81 loc) · 2.22 KB
/
Copy pathcomposer.json
File metadata and controls
81 lines (81 loc) · 2.22 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
77
78
79
80
81
{
"name": "php-db/phpdb-pgsql",
"description": "PostgreSQL support for php-db",
"license": "BSD-3-Clause",
"keywords": [
"php-db",
"pgsql",
"db"
],
"homepage": "https://php-db.dev",
"support": {
"issues": "https://github.com/php-db/phpdb-pgsql/issues",
"source": "https://github.com/php-db/phpdb-pgsql",
"forum": "https://github.com/php-db/phpdb-pgsql/discussions"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"platform": {
"php": "8.3.99"
},
"allow-plugins": {
"infection/extension-installer": true
}
},
"extra": {
"laminas": {
"config-provider": "PhpDb\\Pgsql\\ConfigProvider"
}
},
"require": {
"php": "~8.3.0 || ~8.4.0 || ~8.5.0",
"php-db/phpdb": "^0.6.0"
},
"require-dev": {
"ext-pdo_pgsql": "*",
"ext-pgsql": "*",
"infection/infection": "^0.34.1",
"php-db/phpdb-qa-tools": "0.1.x-dev",
"phpunit/phpunit": "^11.5.42"
},
"suggest": {
"ext-pdo_pgsql": "*",
"ext-pgsql": "*",
"laminas/laminas-servicemanager": "Laminas\\ServiceManager component"
},
"autoload": {
"psr-4": {
"PhpDb\\Pgsql\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhpDbTest\\Pgsql\\": "test/unit/",
"PhpDbTestAsset\\Pgsql\\": "test/asset/",
"PhpDbIntegrationTest\\Pgsql\\": "test/integration/"
}
},
"scripts": {
"check": [
"@cs-check",
"@static-analysis",
"@test",
"@test-integration"
],
"cs-check": [
"mago format --check",
"mago lint"
],
"cs-fix": [
"mago format",
"mago lint --fix"
],
"test": "phpunit --colors=always --testsuite \"unit test\"",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml",
"test-integration": "phpunit --colors=always --testsuite \"integration test\"",
"static-analysis": "mago analyze",
"mutation-test": "infection"
}
}