23 lines
343 B
PHP
23 lines
343 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Default configuration file. Be careful to respect the PHP syntax.
|
||
|
*
|
||
|
* Do not modify this file! Instead, copy it to config.my.php and make
|
||
|
* your changes there.
|
||
|
**/
|
||
|
return [
|
||
|
|
||
|
/**
|
||
|
* Database parameters.
|
||
|
**/
|
||
|
'db' => [
|
||
|
'host' => 'localhost'
|
||
|
,'port' => 3306
|
||
|
,'schema' => 'pbx'
|
||
|
,'user' => 'pbx'
|
||
|
,'pass' => ''
|
||
|
]
|
||
|
|
||
|
];
|
||
|
|