From 0c92d19eb76d6aae1ee0826789b9aabf2e6565bd Mon Sep 17 00:00:00 2001 From: peaklabs-dev <122374094+peaklabs-dev@users.noreply.github.com> Date: Wed, 10 Dec 2025 15:39:26 +0100 Subject: [PATCH] chore(config): remove unused bcrypt hashing options --- config/hashing.php | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/config/hashing.php b/config/hashing.php index 94db9645a..e0db28ada 100644 --- a/config/hashing.php +++ b/config/hashing.php @@ -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