dg / adminer
There is no license information available for the latest version (v2.0.0) of this package.
Customization for Adminer, the best database management tool written in PHP.
v2.0.0
2024-06-04 14:12 UTC
- dev-master
- v2.0.0
- v1.33.0
- v1.32.0
- v1.31.0
- v1.30.0
- v1.29.0
- v1.28.2
- v1.28.1
- v1.28.0
- v1.27.0
- v1.26.0
- v1.25.0
- v1.24.1
- v1.24.0
- v1.23.0
- v1.22.0
- v1.21.0
- v1.20.0
- v1.19.0
- v1.18.0
- v1.17.0
- v1.16.0
- v1.15.0
- v1.14.0
- v1.13.0
- v1.12.0
- v1.11.0
- v1.10.1
- v1.10.0
- v1.9.2
- v1.9.1
- v1.9.0
- v1.8.0
- v1.7.2
- v1.7.1
- v1.7.0
- v1.6.4
- v1.6.3
- v1.6.2
- v1.6.1
- v1.6.0
- v1.5.1
- v1.5.0
- v1.4.0
- v1.3.0
- v1.2.0
- v1.1.0
- v1.0.1
- v1.0.0
This package is auto-updated.
Last update: 2024-11-04 15:09:47 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 dg/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/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
.