定制 leung/laravel-adminer 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

leung/laravel-adminer

Composer 安装命令:

composer require leung/laravel-adminer

包简介

adminer for laravel5.*

README 文档

README

Adminer is a full-featured database management tool written in PHP. This package automates setup for adminer and routes your.domain.here/adminer to the the adminer.php script.

Installation

Composer

composer require leung/laravel-adminer

OR

Add directly to your composer.json

"require": {
    "leung/laravel-adminer": "^2.0"
},

Providers

Laravel <5.4

open your config/app.php and add this line in providers section

Simple\Adminer\AdminerServiceProvider::class
OR prevent it being on production

open your app/Providers/AppServiceProvider.php and add this line in the register() function

if ($this->app->environment() !== 'production') {
    $this->app->register(\Simple\Adminer\AdminerServiceProvider::class);
}

Laravel 5.5 providers

auto included via automatic package discovery

   // no need to add anything!!!

Update adminer.php

Linux command line update

php artisan adminer:update

You can configure your composer.json to do this after each commit:

"scripts": {
    "post-install-cmd": [
        "php artisan adminer:update"
    ],
    "post-update-cmd": [
        "php artisan adminer:update"
    ]
}

[Optional] Middleware

Middleware is added in via the service provider

to override this you may add a adminer route to your App routes.php

    Route::any('adminer', '\Simple\Adminer\Controllers\AdminerController@index')->middleware('adminer_custom_middleware'); // where you defined your middleware in app/Http/Kernel.php

Add middleware group example

to add a custom middleware group you will need to add it to middlewareGroups in your app/Http/Kernel.php

protected $middlewareGroups = [
    ...
    'adminer_custom_middleware' => [
        \App\Http\Middleware\EncryptCookies::class,
        \Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class,
        \Illuminate\Session\Middleware\StartSession::class,

        // you may create customized middleware to fit your needs
        ...
    ],
];

Modify app/Http/Middleware/VerifyCsrfToken.php

also add adminer to $except array if you are using the example optional adminer group

protected $except = [
     'adminer'
 ];

leung/laravel-adminer 适用场景与选型建议

leung/laravel-adminer 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 8.98k 次下载、GitHub Stars 达 16, 最近一次更新时间为 2017 年 03 月 24 日, 在 PHP 生态内属于活跃度较高的组件。

我们在过去多个企业项目中使用过 leung/laravel-adminer 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 leung/laravel-adminer 我们能提供哪些服务?
定制开发 / 二次开发

基于 leung/laravel-adminer 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 8.98k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 17
  • 点击次数: 8
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 16
  • Watchers: 2
  • Forks: 4
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2017-03-24