From 9eb17b7be8c2ee41e658d17decc3456f8c1456fb Mon Sep 17 00:00:00 2001 From: Ayesh Karunaratne Date: Tue, 23 Apr 2024 20:21:12 +0530 Subject: [PATCH] Bump minimum PHP requirement to PHP 7.1 (#338) PR #337 depends on this. Bumps the minimum required PHP version to PHP 7.1 to use explicit nullable parameter type syntax. --- .github/workflows/ci.yml | 2 +- composer.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ae63275..8291958 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,7 +6,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php-versions: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2'] + php-versions: ['7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3'] steps: - name: Checkout diff --git a/composer.json b/composer.json index 1485a00..cbf18a9 100644 --- a/composer.json +++ b/composer.json @@ -23,7 +23,7 @@ "sort-packages": true }, "require": { - "php": "^7.0 || ^8.0", + "php": "^7.1 || ^8.0", "ext-simplexml": "*", "ext-mbstring": "*", "ext-ctype": "*",