Package Data | |
---|---|
Maintainer Username: | phroggyy |
Maintainer Contact: | leo.sjoberg@gmail.com (Leo Sjöberg) |
Package Create Date: | 2015-12-15 |
Package Last Update: | 2015-12-27 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-26 15:05:38 |
Package Statistics | |
---|---|
Total Downloads: | 158 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 4 |
Total Watchers: | 3 |
Total Forks: | 1 |
Total Open Issues: | 0 |
A Laravel 5 wrapper for Adminer. Adminer is a database management tool contained within a single PHP file written by Jakub Vrana, and is a great replacement for PhpMyAdmin.
This package was inspired by Miroc's Laravel-Adminer package, and aims to address one major shortcoming. Namely, this package has a built-in artisan command to fetch the latest adminer file, so that you can always stay up to date, without this package needing to be updated.
To install the library, first pull it in through Composer:
composer require phroggyy/laravel-adminer dev-master
Then simply register the service provider in the providers
array in config/app.php
Phroggyy\LaravelAdminer\AdminerServiceProvider::class,
To get started with using Adminer, simply run
php artisan adminer:latest
to fetch the latest version of Adminer. the /adminer
route has already been registered for you.