-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
42 lines (42 loc) · 1.28 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
{
"name": "sad_spirit/pg_wrapper",
"description": "Converter of complex PostgreSQL types and an OO wrapper for PHP's pgsql extension",
"type": "library",
"keywords": ["PostgreSQL", "Postgres", "database", "conversion", "geometric", "datetime", "array", "range", "composite"],
"license": "BSD-2-Clause",
"authors": [
{
"name": "Alexey Borzov",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/sad-spirit/pg-wrapper/issues"
},
"require" : {
"php": "^8.2",
"ext-ctype": "*",
"ext-json": "*"
},
"suggest": {
"psr/cache-implementation": "Used for DB metadata caching",
"ext-pgsql": "Used for communicating with PostgreSQL"
},
"require-dev": {
"ext-pgsql": "*",
"phpunit/phpunit": "^10.0",
"psr/cache": "^3.0",
"phpstan/phpstan": "^1.12",
"vimeo/psalm": "^5.26"
},
"autoload": {
"psr-4": {
"sad_spirit\\pg_wrapper\\": "src/sad_spirit/pg_wrapper"
}
},
"autoload-dev": {
"psr-4": {
"sad_spirit\\pg_wrapper\\tests\\": "tests"
}
}
}