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

@@ -103,6 +103,6 @@ return [
|
*/
'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache_'),
'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel')).'-cache-'),
];