lagdo / dbadmin-driver-pgsql
DbAdmin driver for PostgreSQL.
v0.23.3
2026-09-04 04:25 UTC
Requires
- php: >=8.1.0
- lagdo/dbadmin-driver: 0.23.*
Requires (Dev)
- ext-pdo: *
- ext-pdo_pgsql: *
- ext-pgsql: *
- behat/behat: ^3.10
- dvdoug/behat-code-coverage: 5.0.*
- php-coveralls/php-coveralls: ^2.5
- phpunit/phpcov: ^8.2
- phpunit/phpunit: ^9.5
Suggests
None
Provides
None
Conflicts
None
Replaces
None
- dev-main
- v0.23.3
- v0.23.2
- v0.23.1
- v0.23.0
- v0.22.0
- v0.21.0
- 0.20.x-dev
- v0.20.0
- v0.19.1
- v0.19.0
- v0.18.0
- v0.17.0
- v0.16.0
- v0.15.1
- v0.15.0
- v0.14.0
- v0.13.0
- v0.12.1
- v0.12.0
- v0.11.0
- 0.10.x-dev
- v0.10.0
- v0.9.0
- v0.8.1
- v0.8.0
- v0.7.1
- v0.7.0
- v0.6.1
- v0.6.0
- v0.5.0
- v0.4.2
- v0.4.1
- v0.4.0
- v0.3.1
- v0.3.0
- v0.2.0
- v0.1.2
- v0.1.1
- v0.1.0
This package is auto-updated.
Last update: 2026-09-04 04:34:27 UTC
README
DbAdmin drivers for PostgreSQL
This package is based on Adminer.
It provides PostgreSQL drivers for Jaxon DbAdmin, and implements the interfaces defined in https://github.com/lagdo/dbadmin-driver.
It requires either the php-pgsql or the php-pdo_pgsql PHP extension to be installed, and uses the former by default.
Installation
Install with Composer.
composer require lagdo/dbadmin-driver-pgsql
Configuration
Declare the PostgreSQL servers in the packages section on the Jaxon config file. Set the driver option to pgsql.
'app' => [ 'packages' => [ Lagdo\DbAdmin\App\DbAdminPackage::class => [ 'servers' => [ 'server_id' => [ // A unique identifier for this server 'driver' => 'pgsql', 'name' => '', // The name to be displayed in the dashboard UI. 'host' => '', // The database host name or address. 'port' => 0, // The database port. Optional. 'username' => '', // The database user credentials. 'password' => '', // The database user credentials. ], ], ], ], ],
Check the Jaxon DbAdmin documentation for more information about the package usage.