1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/humhub_ynh.git synced 2024-09-03 19:26:11 +02:00
humhub_ynh/conf/common.php

17 lines
318 B
PHP
Raw Normal View History

2016-08-21 01:03:46 +02:00
<?php
return [
'components' => [
'db' => [
2021-02-17 23:50:49 +01:00
'dsn' => 'mysql:host=localhost;dbname=__DB_NAME__',
'username' => '__DB_USER__',
'password' => '__DB_PWD__',
2016-08-21 01:03:46 +02:00
],
],
'modules' => [
'user' => [
'minimumUsernameLength' => 1
]
2016-08-21 01:03:46 +02:00
]
];