Frankie B
8c0a2a6383
--------- Co-authored-by: codacy-production[bot] <61871480+codacy-production[bot]@users.noreply.github.com>
18 lines
259 B
PHP
18 lines
259 B
PHP
<?php
|
|
|
|
return [
|
|
// One of "bcrypt", "argon", "argon2id"
|
|
'driver' => 'bcrypt',
|
|
|
|
'bcrypt' => [
|
|
'rounds' => env('BCRYPT_ROUNDS', 10),
|
|
],
|
|
|
|
|
|
'argon' => [
|
|
'memory' => 65536,
|
|
'threads' => 1,
|
|
'time' => 4,
|
|
],
|
|
];
|