From e9ae83d9f98bd30c3361400d05cfad7845f4ae80 Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Wed, 30 Mar 2022 17:54:14 +0200 Subject: [PATCH] Drop support for PHP 8.0 --- .github/workflows/ci.yml | 1 - ChangeLog.md | 4 ++-- composer.json | 4 ++-- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8f41914..e87fee4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -58,7 +58,6 @@ jobs: fail-fast: false matrix: php-version: - - "8.0" - "8.1" - "8.2" diff --git a/ChangeLog.md b/ChangeLog.md index 96f0caf..f7f86b4 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -2,7 +2,7 @@ All notable changes are documented in this file using the [Keep a CHANGELOG](https://keepachangelog.com/) principles. -## [5.0.0] - 2021-MM-DD +## [5.0.0] - 2022-MM-DD ### Changed @@ -10,7 +10,7 @@ All notable changes are documented in this file using the [Keep a CHANGELOG](htt ### Removed -* This component is no longer supported on PHP 7.3 and PHP 7.4 +* This component is no longer supported on PHP 7.3, PHP 7.4 and PHP 8.0 ## [4.0.4] - 2021-11-11 diff --git a/composer.json b/composer.json index 0c328ff..64ff9e7 100644 --- a/composer.json +++ b/composer.json @@ -28,7 +28,7 @@ ], "config": { "platform": { - "php": "8.0.0" + "php": "8.1.0" }, "optimize-autoloader": true, "sort-packages": true @@ -36,7 +36,7 @@ "minimum-stability": "dev", "prefer-stable": true, "require": { - "php": ">=8.0", + "php": ">=8.1", "ext-mbstring": "*", "sebastian/recursion-context": "^5.0" },