17 lines
360 B
PHP
17 lines
360 B
PHP
<?php
|
|
/**
|
|
* Minimal config file for test
|
|
*
|
|
* @package PhpMyAdmin-test
|
|
*/
|
|
$i = 0;
|
|
|
|
/* Server: localhost [1] */
|
|
$i++;
|
|
$cfg['Servers'][$i]['verbose'] = '';
|
|
$cfg['Servers'][$i]['host'] = 'localhost';
|
|
$cfg['Servers'][$i]['port'] = '';
|
|
$cfg['Servers'][$i]['socket'] = '';
|
|
$cfg['Servers'][$i]['connect_type'] = 'tcp';
|
|
$cfg['Servers'][$i]['auth_type'] = 'cookie';
|