15 lines
385 B
PHP
15 lines
385 B
PHP
<?php
|
|
|
|
return [
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Configuration about security
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Load them from env to config, preventing cache problems
|
|
|
|
|
*/
|
|
'cipher' => menv('PWD_METHOD', 'SALTED2MD5'),
|
|
'salt' => menv('SALT', '')
|
|
];
|