'bcrypt', /* |-------------------------------------------------------------------------- | Bcrypt Options |-------------------------------------------------------------------------- | | Here you may specify the configuration options that should be used when | passwords are hashed using the Bcrypt algorithm. | */ 'bcrypt' => [ 'rounds' => env('BCRYPT_ROUNDS', 10), ], /* |-------------------------------------------------------------------------- | Argon Options |-------------------------------------------------------------------------- | | These options are used when the Argon2 algorithm is selected for | password hashing. You can configure how much memory and time | is used when hashing the passwords using Argon. | */ 'argon' => [ 'memory' => 65536, 'threads' => 1, 'time' => 4, ], ];