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