2016-08-29 16:41:28 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
return [
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
2018-08-07 18:15:39 +08:00
|
|
|
| Security Configuration
|
2016-08-29 16:41:28 +08:00
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Load them from env to config, preventing cache problems
|
|
|
|
|
|
|
|
|
*/
|
2019-09-07 13:01:44 +08:00
|
|
|
'cipher' => env('PWD_METHOD', 'BCRYPT'),
|
2019-02-27 23:44:50 +08:00
|
|
|
'salt' => env('SALT', ''),
|
2016-08-29 16:41:28 +08:00
|
|
|
];
|