From fb7c55f14ff1b1c04c4cf8d6ce93777cbaeada7a Mon Sep 17 00:00:00 2001 From: Andreas Pelekoudas Date: Fri, 21 Nov 2025 13:48:42 +0200 Subject: [PATCH] Unpin symfony/process version constraint to allow newer versions Changed from fixed version 7.1.8 to ^7.1 constraint to allow compatibility with projects using newer Symfony 7.x versions while maintaining minimum version requirement. --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 842b83a..f240d62 100644 --- a/composer.json +++ b/composer.json @@ -20,7 +20,7 @@ "ext-intl": "*", "ext-mbstring": "*", "ext-fileinfo": "*", - "symfony/process": "7.1.8" + "symfony/process": "^7.1" }, "require-dev": { "phpunit/phpunit": "^7.5 || ^8.5 || ~9.4",