From 5d7ff502e0c223a4cf335bc7973d2115a3b01bf3 Mon Sep 17 00:00:00 2001 From: Sleon4 Date: Sun, 1 Mar 2026 19:19:00 -0500 Subject: [PATCH 1/2] chore: PHPUNit configuration updated from v12 to v13 --- phpunit.xml | 26 ++++---------------------- 1 file changed, 4 insertions(+), 22 deletions(-) diff --git a/phpunit.xml b/phpunit.xml index 11f9da2..867ca32 100644 --- a/phpunit.xml +++ b/phpunit.xml @@ -1,34 +1,16 @@ - - - - - + + + From 92586616a43dbe7d5f4f2063e3fda750a067125c Mon Sep 17 00:00:00 2001 From: Sleon4 Date: Sun, 1 Mar 2026 19:19:47 -0500 Subject: [PATCH 2/2] fix: Non-existent class removed from middleware list --- routes/middleware.php | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/routes/middleware.php b/routes/middleware.php index 2ac8e5b..e40fb12 100644 --- a/routes/middleware.php +++ b/routes/middleware.php @@ -10,21 +10,15 @@ declare(strict_types=1); -use Lion\Bundle\Middleware\HttpsMiddleware; use Lion\Bundle\Middleware\RouteMiddleware; use Lion\Bundle\Support\Http\Routes; Routes::setMiddleware([ /** - * [Protects the route which provides the list of available routes] + * Protects the route which provides the list of available routes. */ 'protect-route-list' => RouteMiddleware::class, - /** - * [Filters that request via HTTPS] - */ - 'https' => HttpsMiddleware::class, - ]);