Skip to content

Commit

Permalink
[11.x] Fixes missing configuration available in latest Laravel 10. (#…
Browse files Browse the repository at this point in the history
…49110)

Signed-off-by: Mior Muhammad Zaki <[email protected]>
  • Loading branch information
crynobone authored Nov 24, 2023
1 parent 5519ca0 commit a71e14b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion config/hashing.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@
*/

'bcrypt' => [
'rounds' => env('BCRYPT_ROUNDS', 10),
'rounds' => env('BCRYPT_ROUNDS', 12),
'verify' => true,
],

/*
Expand All @@ -47,6 +48,7 @@
'memory' => env('ARGON_MEMORY', 65536),
'threads' => env('ARGON_THREADS', 1),
'time' => env('ARGON_TIME', 4),
'verify' => true,
],

];
1 change: 1 addition & 0 deletions config/mail.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@

'postmark' => [
'transport' => 'postmark',
// 'message_stream_id' => null,
// 'client' => [
// 'timeout' => 5,
// ],
Expand Down

0 comments on commit a71e14b

Please sign in to comment.