Files

32 lines
834 B
PHP

<?php
/*
* AVSDev UF Organisations (https://avsdev.uk)
*
* @link https://git.avsdev.uk/avsdev/sprinkle-organisations
* @license https://git.avsdev.uk/avsdev/sprinkle-organisations/blob/master/LICENSE.md (LGPL-3.0 License)
*/
/*
* Configuration file for the UF Organisations
*
* Sensitive credentials should be stored in an environment variable or your .env file.
* Database password: DB_PASSWORD
* SMTP server password: SMTP_PASSWORD
*/
return [
'debug' => [ 'auth' => true ],
'organisation' => [
'registration' => [
'require_approval' => true,
'timeout' => -1,
],
'membership' => [
'require_approval' => true,
'single_membership' => false,
'timeout' => -1,
],
'combine_action_buttons' => false,
],
];