-
Notifications
You must be signed in to change notification settings - Fork 33
/
composer.json
38 lines (38 loc) · 982 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
{
"name": "silverstripe/postgresql",
"description": "SilverStripe now has tentative support for PostgreSQL ('Postgres')",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe",
"postgresql",
"database"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Sam Minnée",
"email": "[email protected]"
}
],
"require": {
"silverstripe/framework": "^5",
"silverstripe/vendor-plugin": "^2",
"ext-pgsql": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3"
},
"autoload": {
"psr-4": {
"SilverStripe\\PostgreSQL\\": "code/",
"SilverStripe\\PostgreSQL\\Tests\\": "tests/"
}
},
"scripts": {
"lint": "phpcs code/ tests/",
"lint-clean": "phpcbf code/ tests/"
},
"minimum-stability": "dev",
"prefer-stable": true
}