From 50a383ec473ed13b9dff99e8f49df221dcaea2c2 Mon Sep 17 00:00:00 2001 From: Joe Lambert Date: Tue, 12 Nov 2024 17:08:58 +0000 Subject: [PATCH] Drop PHP 8.0 support --- .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 b7a6483..f54dc58 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php_version: [8.0, 8.1, 8.2] + php_version: [8.1, 8.2, 8.3] composer_flags: ['', '--prefer-lowest'] steps: diff --git a/composer.json b/composer.json index 1bdf704..0cf2c1c 100644 --- a/composer.json +++ b/composer.json @@ -3,7 +3,7 @@ "description": "A powerful MVC framework for the modern WordPress developer. Write better, more expressive and easier to maintain code", "license": "MIT", "require": { - "php": ">=8.0", + "php": ">=8.1", "php-di/php-di": "^6.4.0", "rareloop/router": "^6.0.2", "psr/container": "^1.1.2",