From 48c5b18cce167e7e495a9de5200b846c0c427d89 Mon Sep 17 00:00:00 2001 From: Paul Jura Date: Mon, 27 Jul 2026 11:36:35 +1000 Subject: [PATCH] chore(deps): Drop support for PHP 7.1 and PHPUnit 7 There is no version of PHPUnit that will run on PHP 7.1 and not conflict with roave/security-advisories. --- .github/workflows/tests.yml | 2 +- composer.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ecbf86d..b1c3aea 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php-version: ['7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3'] + php-version: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3'] composer-prefer: - '--prefer-dist' - '--prefer-stable --prefer-lowest' diff --git a/composer.json b/composer.json index 4ac909c..c701831 100644 --- a/composer.json +++ b/composer.json @@ -3,7 +3,7 @@ "description": "A utility library for working with Table Schema", "license": "MIT", "require": { - "php": ">=7.1.0", + "php": ">=7.2.0", "ext-mbstring": "*", "ext-json": "*", "justinrainbow/json-schema": "^5.2.10", @@ -11,7 +11,7 @@ "jmikola/geojson": "^1.0" }, "require-dev": { - "phpunit/phpunit": ">=7.5 <10.0", + "phpunit/phpunit": ">=8.0 <10.0", "php-coveralls/php-coveralls": "^2.4", "psy/psysh": "@stable", "roave/security-advisories": "dev-latest"