Skip to content

Commit

Permalink
Merge branch 'hotfix/8.4.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
chrispelzer committed Aug 18, 2023
2 parents 31a154e + f739261 commit 5246019
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions config/cache.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<?php

use Illuminate\Support\Str;

return [

Expand Down Expand Up @@ -108,6 +107,6 @@
|
*/

'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache_'),
'prefix' => null,

];
4 changes: 2 additions & 2 deletions config/database.php
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@

'options' => [
'cluster' => env('REDIS_CLUSTER', 'redis'),
'prefix' => env('REDIS_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_database_'),
'prefix' => Str::slug(env('APP_NAME', 'laravel')).':',
],

'default' => [
Expand All @@ -134,7 +134,7 @@
'username' => env('REDIS_USERNAME'),
'password' => env('REDIS_PASSWORD'),
'port' => env('REDIS_PORT', '6379'),
'database' => env('REDIS_DB', '0'),
'database' => env('REDIS_DB', '1'),
],

'sessions' => [
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "base",
"private": true,
"version": "8.4.1",
"version": "8.4.2",
"description": "",
"scripts": {
"dev": "npm run development",
Expand Down

0 comments on commit 5246019

Please sign in to comment.