From 8a8d5da0af0539db8ffc7d4fdab402111fe4139c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Wed, 4 Dec 2024 13:54:18 +0100 Subject: [PATCH] Fix: Use ~ operator to limit compatibility with PHP versions --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index ba2cc55c..aabf72c3 100644 --- a/composer.json +++ b/composer.json @@ -20,7 +20,7 @@ } ], "require": { - "php": "^7.1 || ^8.0" + "php": "~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0" }, "require-dev": { "phpunit/phpunit": "^7.5 || ^8.0",