From f721f0fb84e78d84ca36fe5028a8abe7b0142f85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Tamarelle?= Date: Wed, 10 Sep 2025 13:14:28 +0200 Subject: [PATCH] Remove explicit dependency to symfony/http-kernel as it's not used directly --- composer.json | 3 +-- src/Session/MongoDbSessionHandler.php | 9 --------- 2 files changed, 1 insertion(+), 11 deletions(-) diff --git a/composer.json b/composer.json index 6edd8d484..658e7f112 100644 --- a/composer.json +++ b/composer.json @@ -31,8 +31,7 @@ "illuminate/database": "^10.30|^11|^12", "illuminate/events": "^10.0|^11|^12", "illuminate/support": "^10.0|^11|^12", - "mongodb/mongodb": "^1.21|^2", - "symfony/http-foundation": "^6.4|^7" + "mongodb/mongodb": "^1.21|^2" }, "require-dev": { "laravel/scout": "^10.3", diff --git a/src/Session/MongoDbSessionHandler.php b/src/Session/MongoDbSessionHandler.php index 3677ea758..b6082b6b9 100644 --- a/src/Session/MongoDbSessionHandler.php +++ b/src/Session/MongoDbSessionHandler.php @@ -1,14 +1,5 @@ - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace MongoDB\Laravel\Session; use Illuminate\Session\DatabaseSessionHandler;