Skip to content

Commit d026abf

Browse files
committed
wip
1 parent 78524c6 commit d026abf

File tree

2 files changed

+11
-10
lines changed

2 files changed

+11
-10
lines changed

README.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -149,12 +149,13 @@ then optimize the processes that power the core of your business.
149149

150150
| Version | PHP Version | Laravel Version | DocuWare Cloud Access |
151151
|---------------|-------------|-----------------|-----------------------|
152-
| v2.0+ | ^8.2 - ^8.4 | 12.* ||
153-
| v2.0+ | ^8.2 | 11.* ||
154-
| v2.0+ | ^8.2 | 10.* ||
155-
| v2.0+ | ^8.1 | 9.* ||
156-
| v1.2 - v1.3 | ^8.1 | 9.* ||
157-
| v1.0 - v1.1 | ^8.0 | 8.* ||
152+
| v12.0 | ^8.2 - ^8.4 | 12.* ||
153+
| v11.0 (alpha) | ^8.2 | 11.* ||
154+
| > v4.0 | ^8.2 | 11.* ||
155+
| > v3.0 | ^8.2 | 10.* ||
156+
| > v2.0 | ^8.1 | 9.* ||
157+
| > v1.2 | ^8.1 | 9.* ||
158+
| < v1.2 | ^8.0 | 8.* ||
158159

159160
</details>
160161

@@ -1683,7 +1684,7 @@ return [
16831684
|
16841685
*/
16851686

1686-
'cache_driver' => env('DOCUWARE_CACHE_DRIVER', env('CACHE_STORE', env('CACHE_DRIVER', 'file'))),
1687+
'cache_driver' => env('DOCUWARE_CACHE_DRIVER', env('CACHE_STORE', 'file')),
16871688

16881689
/*
16891690
|--------------------------------------------------------------------------
@@ -1746,7 +1747,7 @@ return [
17461747
'additional_result_fields' => [],
17471748
],
17481749
'cache' => [
1749-
'driver' => env('DOCUWARE_CACHE_DRIVER', env('CACHE_STORE', env('CACHE_DRIVER', 'file'))),
1750+
'driver' => env('DOCUWARE_CACHE_DRIVER', env('CACHE_STORE', 'file')),
17501751
'lifetime_in_seconds' => env('DOCUWARE_CACHE_LIFETIME_IN_SECONDS', 60),
17511752
],
17521753
'request' => [

config/laravel-docuware.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
|
1212
*/
1313

14-
'cache_driver' => env('DOCUWARE_CACHE_DRIVER', env('CACHE_STORE', env('CACHE_DRIVER', 'file'))),
14+
'cache_driver' => env('DOCUWARE_CACHE_DRIVER', env('CACHE_STORE', 'file')),
1515

1616
/*
1717
|--------------------------------------------------------------------------
@@ -74,7 +74,7 @@
7474
'additional_result_fields' => [],
7575
],
7676
'cache' => [
77-
'driver' => env('DOCUWARE_CACHE_DRIVER', env('CACHE_STORE', env('CACHE_DRIVER', 'file'))),
77+
'driver' => env('DOCUWARE_CACHE_DRIVER', env('CACHE_STORE', 'file')),
7878
'lifetime_in_seconds' => env('DOCUWARE_CACHE_LIFETIME_IN_SECONDS', 60),
7979
],
8080
'request' => [

0 commit comments

Comments
 (0)