From 2b1224dbffff6eff3479f5fe3a62500ab298e265 Mon Sep 17 00:00:00 2001 From: elliot-putt-spectre Date: Wed, 29 Jul 2026 09:10:18 +0100 Subject: [PATCH] Widen sebastian/diff constraint to allow v8 and v9 Allows consumers on PHPUnit 13 / Pest 5 (which require sebastian/diff ^9.0) to install this package. The Differ/UnifiedDiffOutputBuilder API used in PromptDiffCommand is unchanged across sebastian/diff v7-v9. --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 719f239..e55e63b 100644 --- a/composer.json +++ b/composer.json @@ -32,7 +32,7 @@ ], "require": { "php": "^8.2", - "sebastian/diff": "^7.0.0", + "sebastian/diff": "^7.0.0|^8.0.0|^9.0.0", "nesbot/carbon": "^3.0", "illuminate/container": "^11.0|^12.0|^13.0", "illuminate/database": "^11.0|^12.0|^13.0",