From 5d7d4141a5a0ae641557f48cbd128f8ed9fcb887 Mon Sep 17 00:00:00 2001 From: Ruud Kamphuis Date: Wed, 11 Sep 2024 18:17:47 +0200 Subject: [PATCH] Allow PHP 8.4 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I don’t get it why this library forcefully disallows installation on higher / unsupported PHP versions. It’s one of the few dependencies that I know that do this. Can we please relax this so that people can start running their CI on PHP 8.4 already to spot issues and report / fix them here. --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 333be9ac..94ae9c31 100644 --- a/composer.json +++ b/composer.json @@ -24,7 +24,7 @@ ], "homepage": "http://moneyphp.org", "require": { - "php": "~8.1.0 || ~8.2.0 || ~8.3.0", + "php": "^8.1", "ext-bcmath": "*", "ext-filter": "*", "ext-json": "*"