Increase bcrypt rounds to 12 (#6245)

This commit is contained in:
Stephen Rees-Carter 2023-09-23 01:06:29 +10:00 committed by GitHub
parent 88695a7cf4
commit 540cec038f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,7 +29,7 @@ return [
*/
'bcrypt' => [
'rounds' => env('BCRYPT_ROUNDS', 10),
'rounds' => env('BCRYPT_ROUNDS', 12),
],
/*