1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/mineweb_ynh.git synced 2024-09-03 19:45:54 +02:00
mineweb_ynh/conf/database.php
Éric Gaspar 2c70b02629
Testing (#9)
* Fix linter warnings
2021-04-25 17:56:31 +02:00

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',
];
}