From 9648ced8f02cf16de6c7d1041c33e900e905c8d2 Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Thu, 1 Feb 2024 19:50:57 +0100 Subject: [PATCH] [TASK] Drop support for PHP < 7.2 (#420) --- .github/workflows/ci.yml | 4 ++-- CHANGELOG.md | 2 ++ composer.json | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b23f7449..0b1d4bae 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-22.04 strategy: matrix: - php-version: [ '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2' ] + php-version: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2' ] steps: - name: Checkout @@ -39,7 +39,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: [ '5.6', '7.0', '7.1', '7.2', '7.3' ] + php-version: [ '7.2', '7.3' ] coverage: [ 'none' ] include: - php-version: '7.4' diff --git a/CHANGELOG.md b/CHANGELOG.md index c70ef0a1..7d8aae4d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,8 @@ This project adheres to [Semantic Versioning](https://semver.org/). ### Removed +- Drop support for PHP < 7.2 (#420) + ### Fixed ## 8.5.0 diff --git a/composer.json b/composer.json index 6b7c9607..1bfad6f6 100644 --- a/composer.json +++ b/composer.json @@ -15,7 +15,7 @@ } ], "require": { - "php": ">=5.6.20", + "php": ">=7.2.0", "ext-iconv": "*" }, "require-dev": {