From f4f12c13a2104db035b72c7960a11b04cdde2820 Mon Sep 17 00:00:00 2001 From: "Vladyslav G." Date: Thu, 3 Sep 2026 13:51:22 +0200 Subject: [PATCH] fix(deps): allow the framework's 1.x line The framework reached 1.0.0, and this plugin's upper bound shut it out. It is a bound, not a compatibility statement: what 1.0.0 broke is the signature of the framework's command middleware, which this package neither implements nor calls. 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 453c2cc..317ef95 100644 --- a/composer.json +++ b/composer.json @@ -5,7 +5,7 @@ "license": "MIT", "require": { "php": "^8.5", - "tempcord/framework": ">=0.10 <1.0", + "tempcord/framework": ">=0.10 <2.0", "react/event-loop": "^1.3", "react/async": "^4.0", "tempest/console": "^3.18",