24 lines
607 B
PHP
24 lines
607 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 [
|
|
'organisation' => [
|
|
'registration' => [
|
|
'require_approval' => true,
|
|
'timeout' => -1,
|
|
],
|
|
],
|
|
]; |