#1 - project skeleton
This commit is contained in:
15
config/hashing.php
Normal file
15
config/hashing.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
"driver" => "bcrypt",
|
||||
"bcrypt" => [
|
||||
"rounds" => env("BCRYPT_ROUNDS", 10),
|
||||
],
|
||||
"argon" => [
|
||||
"memory" => 1024,
|
||||
"threads" => 2,
|
||||
"time" => 2,
|
||||
],
|
||||
];
|
Reference in New Issue
Block a user