-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.66 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"$schema": "https://getcomposer.org/schema.json",
"name": "karmabunny/pdb",
"description": "PDO wrapper",
"keywords": ["pdo", "pdb", "mysql", "database", "sqlite", "pgsql", "postgres", "dbsync", "schema"],
"type": "library",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Karmabunny",
"email": "info@karmabunny.com.au"
}
],
"require": {
"php": "^7|^8",
"ext-dom": "*",
"ext-libxml": "*",
"ext-pdo": "*",
"karmabunny/kb": "^2.33|^3"
},
"require-dev": {
"karmabunny/rdb": "^1.16",
"phpcompatibility/php-compatibility": "^9.3",
"phpstan/phpstan": "^1.8",
"phpunit/phpunit": "^9"
},
"suggest": {
"karmabunny/rdb": "For persistent caching - using the PdbCacheRedis class"
},
"autoload": {
"psr-4": {
"karmabunny\\pdb\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"kbtests\\": "tests"
}
},
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"preferred-install": { "karmabunny/*": "dist" }
},
"extra": {
"locals": {
"karmabunny/kb": "../kbphp",
"karmabunny/rdb": "../kbrdb"
}
},
"scripts": {
"tests": "phpunit --testdox --configuration phpunit.xml tests",
"create-db": "bash scripts/create_db.sh",
"publish": "bash scripts/publish.sh",
"patch-locals": "@php scripts/patch_locals.php",
"analyse": "phpstan analyse -c phpstan.neon",
"compat": "phpcs -p --standard=phpcs.xml --colors --extensions=php"
}
}