From 4f4443eb1ae7d9236c715bed317cd54ae197a8a0 Mon Sep 17 00:00:00 2001 From: Dave Mc Nicoll Date: Sun, 18 May 2025 18:08:48 +0000 Subject: [PATCH] - NormalizeKey now includes dots '.' since they are automatically transformed in underscore --- src/Cookie.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Cookie.php b/src/Cookie.php index 5ea280c..b70effa 100644 --- a/src/Cookie.php +++ b/src/Cookie.php @@ -163,6 +163,6 @@ class Cookie { protected function normalizeKey(string $key) : string { - return str_replace([',', ';', ' ', '='], '_', $key); + return str_replace([',', ';', ' ', '=', '.'], '_', $key); } }