lagdo/dbadmin-driver-mysql
最新稳定版本:v0.22.0
Composer 安装命令:
composer require lagdo/dbadmin-driver-mysql
包简介
DbAdmin driver for MySQL.
README 文档
README
DbAdmin drivers for MySQL
This package is based on Adminer.
It provides MySQL drivers for Jaxon DbAdmin, and implements the interfaces defined in https://github.com/lagdo/dbadmin-driver.
It requires either the php-mysqli or the php-pdo_mysql PHP extension to be installed, and uses the former by default.
Installation
Install with Composer.
composer require lagdo/dbadmin-driver-mysql
Configuration
Declare the MySQL servers in the packages section on the Jaxon config file. Set the driver option to mysql.
'app' => [ 'packages' => [ Lagdo\DbAdmin\Db\DbAdminPackage::class => [ 'servers' => [ 'server_id' => [ // A unique identifier for this server 'driver' => 'mysql', '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.
统计信息
- 总下载量: 234
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: Apache-2.0
- 更新时间: 2021-08-27