klaucode / nette-adminer
There is no license information available for the latest version (1.0) of this package.
Customization for Adminer, the best database management tool written in PHP.
1.0
2024-01-06 20:12 UTC
This package is not auto-updated.
Last update: 2026-03-30 05:13:07 UTC
README
Customizations for Adminer, the best database management tool written in PHP.
- clean design
- visual resolution for production/development servers
- SQL autocomplete plugin
- plugin that dumps to PHP code
- plugin that saves menu scroll position
Installation
composer require klaucode/nette-adminer
Create file index.php somewhere in your document root, for example in subdirectory adminer/:
<?php touch(__DIR__ . '/adminer.css'); require __DIR__ . '/../../vendor/dg/adminer-custom/index.php'; // CHECK THAT THIS PATH IS CORRECT
And then navigate your browser to this directory (i.e. http://localhost/adminer).
Autologin
If you want to login automatically (use that for non-public environment only, e.g. localhost), you can do that by setting environment variables ADMINER_SERVER, ADMINER_USERNAME and ADMINER_PASSWORD. If you want to be automatically redirected to https, set ADMINER_HTTPS_REDIRECT environment variable to true.