From be368a6018c58c0a915d2c9a02efd3c968173291 Mon Sep 17 00:00:00 2001 From: Reinfi Date: Mon, 18 Dec 2023 07:08:53 +0100 Subject: [PATCH] allow php 8.3 --- .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 c7f2d07..8820785 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: fail-fast: false max-parallel: 3 matrix: - php: ['8.1', '8.2'] + php: ['8.1', '8.2', '8.3'] name: PHP ${{ matrix.php }} ${{ matrix.description }} steps: - name: Checkout diff --git a/composer.json b/composer.json index 6f03b62..874f04d 100644 --- a/composer.json +++ b/composer.json @@ -20,7 +20,7 @@ "bin/zf-dependency-injection-cache-warmup" ], "require": { - "php": "~8.1.0 || ~8.2.0", + "php": "~8.1.0 || ~8.2.0 || ~8.3.0", "laminas/laminas-servicemanager": "^2.7 | ^3.0", "laminas/laminas-modulemanager": "^2.7", "psr/simple-cache": "^1.0 | ^2.0 | ^3.0"