chore(config): remove unused bcrypt hashing options

This commit is contained in:
peaklabs-dev 2025-12-10 15:39:26 +01:00
parent d666cdcbc3
commit 0c92d19eb7
No known key found for this signature in database

View file

@ -18,23 +18,6 @@ return [
'driver' => env('HASH_DRIVER', 'argon2id'),
/*
|--------------------------------------------------------------------------
| Bcrypt Options
|--------------------------------------------------------------------------
|
| Here you may specify the configuration options that should be used when
| passwords are hashed using the Bcrypt algorithm. This will allow you
| to control the amount of time it takes to hash the given password.
|
*/
'bcrypt' => [
'rounds' => env('BCRYPT_ROUNDS', 14),
'verify' => env('HASH_VERIFY', true),
'limit' => env('BCRYPT_LIMIT'),
],
/*
|--------------------------------------------------------------------------
| Argon Options