2017 © Pedro Peláez
 

library laravel-adminer

It's a embedded adminer in laravel application.

image

kohkimakimoto/laravel-adminer

It's a embedded adminer in laravel application.

  • Wednesday, March 18, 2015
  • by kohkimakimoto
  • Repository
  • 1 Watchers
  • 9 Stars
  • 3,135 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 3 Forks
  • 2 Open issues
  • 2 Versions
  • 2 % Grown

The README.md

Laravel Adminer

It's a embedded adminer in Laravel4 application., (*1)

Installation

Run composer require command, (*2)

$ composer require kohkimakimoto/laravel-adminer

OR, (*3)

Add dependency in composer.json, (*4)

"require": {
    "kohkimakimoto/laravel-adminer": "0.*"
}

and run composer upadte command., (*5)

$ composer update

Add AdminerServiceProvider to providers array in app/config/app.php, (*6)

'providers' => array(
    ...
    'Kohkimakimoto\Adminer\AdminerServiceProvider',
),

Add a routing definition to AdminerController@index. You can use a route you like. The following is example., (*7)

Route::any('adminer', 'Kohkimakimoto\Adminer\Controllers\AdminerController@index');

Finally, Add a little code at the end of public/index.php. You must write the additional code after $app->run();., (*8)

$app->run();

use Kohkimakimoto\Adminer\Facade\Adminer;
if (Adminer::shouldRequestToAdminer()) {
    require Adminer::path();
}

OK. Access the uri you defined by your browser. you can see the adminer database management page., (*9)

adminer.png, (*10)

Author

Kohki Makimoto kohki.makimoto@gmail.com, (*11)

And adminer is created by Jakub Vrána., (*12)

The Versions

18/03 2015

dev-master

9999999-dev

It's a embedded adminer in laravel application.

  Sources   Download

MIT

The Requires

  • php >=5.4.0

 

11/08 2014

v0.1.0

0.1.0.0

It's a embedded adminer in laravel application.

  Sources   Download

MIT

The Requires

  • php >=5.4.0