mirror of
https://github.com/silverstripe/silverstripe-postgresql
synced 2024-10-22 17:05:45 +02:00
42 lines
1011 B
JSON
42 lines
1011 B
JSON
{
|
|
"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": "sam@silverstripe.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"silverstripe/framework": "^5",
|
|
"silverstripe/vendor-plugin": "^1.0"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^7@dev"
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "3.x-dev"
|
|
}
|
|
},
|
|
"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
|
|
}
|