File tree 3 files changed +14
-3
lines changed
3 files changed +14
-3
lines changed Original file line number Diff line number Diff line change 26
26
],
27
27
"require" : {
28
28
"php" : " ^7.4|^8.0" ,
29
- "laravel/framework" : " ^8.83 |^9.0|^10.0"
29
+ "laravel/framework" : " ^8.0 |^9.0|^10.0"
30
30
},
31
31
"require-dev" : {
32
32
"mockery/mockery" : " ^1.5" ,
Original file line number Diff line number Diff line change 6
6
7
7
class Configuration
8
8
{
9
+ public const CACHE_DRIVER_ARRAY = 'array ' ;
10
+
9
11
public const CONFIG = 'fallback-cache ' ;
10
12
11
13
public const FALLBACK_CACHE_STORE = 'fallback_cache_store ' ;
@@ -15,6 +17,6 @@ class Configuration
15
17
*/
16
18
public static function getFallbackCacheStore (): string
17
19
{
18
- return Config::get (self ::CONFIG )[self ::FALLBACK_CACHE_STORE ];
20
+ return Config::get (self ::CONFIG )[self ::FALLBACK_CACHE_STORE ] ?? self :: CACHE_DRIVER_ARRAY ;
19
21
}
20
22
}
Original file line number Diff line number Diff line change 3
3
use LaravelFallbackCache \Config \Configuration ;
4
4
5
5
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
+ )
7
16
];
You can’t perform that action at this time.
0 commit comments