Files
sprinkle-organisations/config/default.php

33 lines
806 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' => [
'tokens' => true,
],
'organisation' => [
'registration' => [
'require_approval' => true,
'timeout' => -1,
],
'membership' => [
'require_approval' => true,
'single_membership' => false,
'timeout' => -1,
],
],
];