Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
Signed-off-by: Mior Muhammad Zaki <crynobone@gmail.com>
  • Loading branch information
crynobone committed Oct 24, 2023
1 parent 09d58d8 commit 894c852
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions bin/sync
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,10 @@ transform([
"env('CACHE_DRIVER', 'file')" => "env('CACHE_DRIVER', 'array')",
], fn ($changes) => $files->replaceInFile(array_keys($changes), array_values($changes), "{$workingPath}/laravel/config/cache.php"));

transform([
"env('BCRYPT_ROUNDS', 12)," => "env('BCRYPT_ROUNDS', 10),",
], fn ($changes) => $files->replaceInFile(array_keys($changes), array_values($changes), "{$workingPath}/laravel/config/hashing.php"));

transform([
"env('SESSION_DRIVER', 'file')" => "env('SESSION_DRIVER', 'array')",
], fn ($changes) => $files->replaceInFile(array_keys($changes), array_values($changes), "{$workingPath}/laravel/config/session.php"));
Expand Down Expand Up @@ -93,6 +97,7 @@ transform([
}
}
',
'$2y$12$Z/vhVO3e.UXKaG11EWgxc.EL7uej3Pi1M0Pq0orF5cbFGtyVh0V3C' => '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi',
], fn ($changes) => $files->replaceInFile(array_keys($changes), array_values($changes), "{$workingPath}/src/Factories/UserFactory.php"));

Illuminate\Support\Collection::make([
Expand Down

0 comments on commit 894c852

Please sign in to comment.