Change to hyphenate prefixes and cookie names (#6636)

This commit is contained in:
Jonathan Goode
2025-06-28 19:24:37 +02:00
committed by GitHub
parent 96164d15c0
commit 9a177b073b
3 changed files with 3 additions and 3 deletions
+1 -1
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-'),
];