2016-04-13 16:31:16 +00:00
|
|
|
<?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.
|
2018-08-02 11:43:57 +00:00
|
|
|
*/
|
2016-04-13 16:31:16 +00:00
|
|
|
return [
|
2018-08-02 11:43:57 +00:00
|
|
|
/**
|
|
|
|
* Database parameters.
|
|
|
|
*/
|
|
|
|
'db' => [
|
|
|
|
'host' => 'localhost'
|
|
|
|
,'port' => 3306
|
|
|
|
,'schema' => 'pbx'
|
|
|
|
,'user' => 'pbx'
|
|
|
|
,'pass' => ''
|
|
|
|
]
|
2016-04-13 16:31:16 +00:00
|
|
|
];
|
|
|
|
|