Add default cache and queue configs

This commit is contained in:
Darko Gjorgjijoski
2024-07-17 11:32:42 +02:00
parent e212714c63
commit a866187f71
2 changed files with 10 additions and 0 deletions

5
config/cache.php Normal file
View File

@@ -0,0 +1,5 @@
<?php
return [
'default' => env('CACHE_STORE', 'file'),
];

5
config/queue.php Normal file
View File

@@ -0,0 +1,5 @@
<?php
return [
'default' => env('QUEUE_CONNECTION', 'sync'),
];