mirror of
https://github.com/YunoHost-Apps/mineweb_ynh.git
synced 2024-09-03 19:45:54 +02:00
13 lines
257 B
PHP
Executable file
13 lines
257 B
PHP
Executable file
<?php
|
|
class DATABASE_CONFIG {
|
|
|
|
public $default = [
|
|
'datasource' => 'Database/Mysql',
|
|
'persistent' => false,
|
|
'host' => 'localhost',
|
|
'login' => '__DB_NAME__',
|
|
'password' => '__DB_PWD__',
|
|
'database' => '__DB_NAME__',
|
|
'encoding' => 'utf8',
|
|
];
|
|
}
|