From c4c762889f26f4aa1c30a54f93083223372cb317 Mon Sep 17 00:00:00 2001 From: Damian Taggart <4309872+attackant@users.noreply.github.com> Date: Tue, 31 Oct 2023 08:50:35 -0600 Subject: [PATCH] Downgrade PHP version requirement in composer.json PHP version requirement in composer.json was changed from "^8.0" to "^7.4" to ensure compatibility with older PHP environments. This will allow the project to be integrated into systems that have not yet updated to the newest PHP version. --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index cc5b1382..ceae6650 100644 --- a/composer.json +++ b/composer.json @@ -6,7 +6,7 @@ "license" : "GPL-3.0-or-later", "require" : { "composer/installers": "^1.12.0", - "php": "^8.0" + "php": "^7.4" }, "require-dev": { "phpspec/prophecy": "^1.17.0",