Skip to content

Commit a863134

Browse files
Merge pull request #1 from lukaszaleckas/update/change_default_fallback_cache_driver
Update default fallback cache driver to array
2 parents c8185ef + 83e4c7d commit a863134

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
],
2727
"require": {
2828
"php": "^7.4|^8.0",
29-
"laravel/framework": "^8.83|^9.0|^10.0"
29+
"laravel/framework": "^8.0|^9.0|^10.0"
3030
},
3131
"require-dev": {
3232
"mockery/mockery": "^1.5",

src/Config/Configuration.php

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66

77
class Configuration
88
{
9+
public const CACHE_DRIVER_ARRAY = 'array';
10+
911
public const CONFIG = 'fallback-cache';
1012

1113
public const FALLBACK_CACHE_STORE = 'fallback_cache_store';
@@ -15,6 +17,6 @@ class Configuration
1517
*/
1618
public static function getFallbackCacheStore(): string
1719
{
18-
return Config::get(self::CONFIG)[self::FALLBACK_CACHE_STORE];
20+
return Config::get(self::CONFIG)[self::FALLBACK_CACHE_STORE] ?? self::CACHE_DRIVER_ARRAY;
1921
}
2022
}

src/Config/fallback-cache.php

+10-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,14 @@
33
use LaravelFallbackCache\Config\Configuration;
44

55
return [
6-
Configuration::FALLBACK_CACHE_STORE => env('FALLBACK_CACHE_STORE', 'database')
6+
/**
7+
* `database` is recommended here, but for compatibility reasons it defaults to `array`.
8+
*
9+
* Note: `database` driver requires migration.
10+
* @see https://laravel.com/docs/10.x/cache#prerequisites-database
11+
*/
12+
Configuration::FALLBACK_CACHE_STORE => env(
13+
'FALLBACK_CACHE_STORE',
14+
Configuration::CACHE_DRIVER_ARRAY
15+
)
716
];

0 commit comments

Comments
 (0)