<?php
return [
'driver' => 'argon2id',
'bcrypt' => [
'rounds' => env('BCRYPT_ROUNDS', 12),
'verify' => true,
],
'argon' => [
'memory' => 65536,
'threads' => 2,
'time' => 6,
'verify' => true,
],
'rehash_on_login' => true,
];