diff --git a/config/data.php b/config/data.php
index f45936ff..62a8f548 100644
--- a/config/data.php
+++ b/config/data.php
@@ -96,7 +96,7 @@
'enabled' => true,
'directories' => [app_path('Data')],
'cache' => [
- 'store' => env('CACHE_DRIVER', 'file'),
+ 'store' => env('CACHE_STORE', env('CACHE_DRIVER', 'file')),
'prefix' => 'laravel-data',
'duration' => null,
],
diff --git a/docs/installation-setup.md b/docs/installation-setup.md
index 9f2ff9ac..563f7402 100644
--- a/docs/installation-setup.md
+++ b/docs/installation-setup.md
@@ -97,7 +97,7 @@ return [
'enabled' => true,
'directories' => [app_path('Data')],
'cache' => [
- 'store' => env('CACHE_DRIVER', 'file'),
+ 'store' => env('CACHE_STORE', 'file'),
'prefix' => 'laravel-data',
],
'reflection_discovery' => [
diff --git a/phpunit.xml.dist b/phpunit.xml.dist
index 84f17760..5c642de1 100644
--- a/phpunit.xml.dist
+++ b/phpunit.xml.dist
@@ -37,6 +37,6 @@
-
+