Change to hyphenate prefixes and cookie names (#6636)

This commit is contained in:
Jonathan Goode
2025-06-28 18:24:37 +01:00
committed by GitHub
parent 96164d15c0
commit 9a177b073b
3 changed files with 3 additions and 3 deletions

View File

@@ -147,7 +147,7 @@ return [
'options' => [
'cluster' => env('REDIS_CLUSTER', 'redis'),
'prefix' => env('REDIS_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_database_'),
'prefix' => env('REDIS_PREFIX', Str::slug(env('APP_NAME', 'laravel')).'-database-'),
'persistent' => env('REDIS_PERSISTENT', false),
],