mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2024-12-15 06:09:58 +08:00
15 lines
374 B
PHP
15 lines
374 B
PHP
<?php
|
|
|
|
return [
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Security Configuration
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Load them from env to config, preventing cache problems
|
|
|
|
|
*/
|
|
'cipher' => env('PWD_METHOD', 'BCRYPT'),
|
|
'salt' => env('SALT', ''),
|
|
];
|