From c61a036d735e36936ba5fa8329bbf889cfbdf486 Mon Sep 17 00:00:00 2001 From: "Vladyslav G." Date: Thu, 3 Sep 2026 13:51:16 +0200 Subject: [PATCH] fix(deps): allow the framework's 1.x line MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The framework reached 1.0.0, and this plugin's upper bound shut it out. It is a bound, not a compatibility statement: 1.0.0 broke Middleware::__invoke in the framework's own command pipeline, which this package neither implements nor calls — its Middleware is its own, for routes. Co-Authored-By: Claude Opus 5 (1M context) --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index c3b033f..84ef120 100644 --- a/composer.json +++ b/composer.json @@ -5,7 +5,7 @@ "license": "MIT", "require": { "php": "^8.5", - "tempcord/framework": ">=0.12 <1.0", + "tempcord/framework": ">=0.12 <2.0", "react/http": "^1.11", "react/socket": "^1.16", "react/event-loop": "^1.3",