From 7cd6e212e4aaa58a3b6dc3aa5eec896e6151ba7a Mon Sep 17 00:00:00 2001 From: Fabian Meyer <3982806+meyfa@users.noreply.github.com> Date: Thu, 14 Sep 2023 13:22:13 +0200 Subject: [PATCH] chore: Require PHP v8.1 or later in composer.json This is in accordance with PHPUnit's own requirement. --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 14b0355..1b76bfe 100644 --- a/composer.json +++ b/composer.json @@ -12,7 +12,7 @@ } ], "require": { - "php": ">=7.3", + "php": ">=8.1", "phpunit/phpunit": "^10.1", "ext-gd": "*" },