From 2532e561aa10eec4a45d64125b5ec5d31aa09d85 Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Mon, 15 Jul 2024 10:19:33 +0200 Subject: [PATCH] drop support for PHP < 7.1 --- .github/workflows/unit-tests.yaml | 5 ----- composer.json | 4 ++-- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/unit-tests.yaml b/.github/workflows/unit-tests.yaml index 0232fbaa..c00148df 100644 --- a/.github/workflows/unit-tests.yaml +++ b/.github/workflows/unit-tests.yaml @@ -9,11 +9,6 @@ jobs: strategy: matrix: php: - - '5.3' - - '5.4' - - '5.5' - - '5.6' - - '7.0' - '7.1' - '7.2' - '7.3' diff --git a/composer.json b/composer.json index 2d09c369..b145680a 100644 --- a/composer.json +++ b/composer.json @@ -13,11 +13,11 @@ } ], "require": { - "php": ">=5.3.0", + "php": ">=7.1", "ext-mbstring": "*" }, "require-dev": { - "phpunit/phpunit": "^4.8|^5.7|^6.5|^7.5|^8.5|^9.6" + "phpunit/phpunit": "^7.5|^8.5|^9.6" }, "autoload": { "psr-0": {"Parsedown": ""}