cuonggt/laravel-dibi
Composer 安装命令:
composer require cuonggt/laravel-dibi
包简介
An elegant GUI database management tool for your Laravel applications.
README 文档
README
Laravel Dibi is an elegant GUI database management tool for your Laravel applications. It provides a quick access for browsing your database on local/dev server without installing any other applications.
Installation
You may install Dibi into your project using the Composer package manager:
composer require cuonggt/laravel-dibi
After installing Dibi, publish its assets using the dibi:install Artisan command:
php artisan dibi:install
Currently, Dibi only supports MySQL. I hope other DB engines like SQL Server, PostgreSQL, SQLite, etc will be supported in near future.
Dibi use database connection name mysql by default to connect. If you would like to use another database connection name, you may use the Dibi::useDatabaseConnectionName method. You may call this method from the boot method of your application's App\Providers\DibiServiceProvider:
/** * Bootstrap any application services. * * @return void */ public function boot() { parent::boot(); Dibi::useDatabaseConnectionName('custom_mysql'); }
Dashboard Authorization
Dibi exposes a dashboard at the /dibi URI. By default, you will only be able to access this dashboard in the local environment. However, within your app/Providers/DibiServiceProvider.php file, there is an authorization gate definition. This authorization gate controls access to Dibi in non-local environments. You are free to modify this gate as needed to restrict access to your Dibi installation:
/** * Register the Dibi gate. * * This gate determines who can access Dibi in non-local environments. * * @return void */ protected function gate() { Gate::define('viewDibi', function ($user) { return in_array($user->email, [ 'admin@example.com', ]); }); }
Upgrading Dibi
When upgrading to a new major version of Dibi, it's important that you carefully review the upgrade guide. In addition, when upgrading to any new Dibi version, you should re-publish Dibi's assets:
php artisan dibi:publish
To keep the assets up-to-date and avoid issues in future updates, you may add the dibi:publish command to the post-update-cmd scripts in your application's composer.json file:
{
"scripts": {
"post-update-cmd": [
"@php artisan dibi:publish --ansi"
]
}
}
Customizing Middleware
If needed, you can customize the middleware stack used by Dibi routes by updating your config/dibi.php file. If you have not published Dibi's confiugration file, you may do so using the vendor:publish Artisan command:
php artisan vendor:publish --tag=dibi-config
Once the configuration file has been published, you may edit Dibi's middleware by tweaking the middleware configuration option within this file:
/* |-------------------------------------------------------------------------- | Dibi Route Middleware |-------------------------------------------------------------------------- | | These middleware will be assigned to every Dibi route - giving you | the chance to add your own middleware to this list or change any of | the existing middleware. Or, you can simply stick with this list. | */ 'middleware' => [ 'web', EnsureUserIsAuthorized::class, EnsureUpToDateAssets::class ],
Local Only Installation
If you plan to only use Dibi to assist your local development, you may install Dibi using the --dev flag:
composer require cuonggt/laravel-dibi --dev php artisan dibi:install
After running dibi:install, you should remove the DibiServiceProvider service provider registration from your application's config/app.php configuration file. Instead, manually register Dibi's service providers in the register method of your App\Providers\AppServiceProvider class. We will ensure the current environment is one of specific environments before registering the providers:
/** * Register any application services. * * @return void */ public function register() { if ($this->app->environment('local', 'develop', 'staging')) { $this->app->register(\Cuonggt\Dibi\DibiServiceProvider::class); $this->app->register(DibiServiceProvider::class); } }
Finally, you should also prevent the Dibi package from being auto-discovered by adding the following to your composer.json file:
"extra": { "laravel": { "dont-discover": [ "cuonggt/laravel-dibi" ] } },
License
Laravel Dibi is open-sourced software licensed under the MIT license.
cuonggt/laravel-dibi 适用场景与选型建议
cuonggt/laravel-dibi 是一款 基于 Vue 开发的 Composer 扩展包,目前已累计 20.25k 次下载、GitHub Stars 达 58, 最近一次更新时间为 2019 年 10 月 02 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「dibi」 「laravel」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 cuonggt/laravel-dibi 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 cuonggt/laravel-dibi 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 cuonggt/laravel-dibi 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Entity generator from database for dibi
Dibi mocking helpers for PHPUnit
Dibi implementation for UniMapper
Tiny wrapper for better and more comfortable works with Dibi
Alfabank REST API integration
Active Record built upon dibi Database Abstraction Library
统计信息
- 总下载量: 20.25k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 58
- 点击次数: 17
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-10-02
