Altax adminer plugin
Adminer runs on the php built-in web server via altax., (*1)
Installation
Edit your .altax/composer.json file like the following., (*2)
{
"require": {
"kohkimakimoto/altax-adminer": "dev-master"
}
}
Run altax update., (*3)
$ altax update
Add the following line your .altax/config.php file., (*4)
Task::register('adminer', 'Altax\Contrib\Adminer\Command\AdminerCommand');
Usage
Run the task command., (*5)
$ altax adminer [-H|--host="..."] [-p|--port="..."] [--css="..."]
Access server using a web browser., (*6)
http://localhost:3000/
Configuration
Example:, (*7)
Task::register('adminer', 'Altax\Contrib\Adminer\Command\AdminerCommand')
->config(array(
"host" => "localhost",
"port" => 1234,
"css" => "ng9",
));
host
The host address of the server., (*8)
port
The port of the server., (*9)
css
The design css., (*10)
See also