From fb8bdc66ab133e9a245a0079270f69f821b8a74c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Barto=C5=A1?= Date: Sat, 22 Jun 2024 00:26:58 +0200 Subject: [PATCH] Allow PHP 8.3 --- .github/workflows/ci.yaml | 22 +++++++++++++++------- composer.json | 2 +- 2 files changed, 16 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b65ac91..cbb4977 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -35,7 +35,7 @@ jobs: matrix: include: - operating-system: "ubuntu-latest" - php-version: "8.1" + php-version: "8.3" steps: - name: "Checkout" @@ -68,7 +68,7 @@ jobs: matrix: include: - operating-system: "ubuntu-latest" - php-version: "8.1" + php-version: "8.3" steps: - name: "Checkout" @@ -100,8 +100,8 @@ jobs: strategy: matrix: - operating-system: [ "ubuntu-latest", "macos-latest", "windows-latest" ] - php-version: [ "7.4", "8.0", "8.1" ] + operating-system: [ "ubuntu-latest" ] + php-version: [ "7.4", "8.0", "8.1", "8.2", "8.3" ] composer-flags: [ "" ] experimental: [ false ] include: @@ -110,8 +110,16 @@ jobs: composer-flags: "--prefer-lowest --prefer-stable" experimental: false - operating-system: "ubuntu-latest" - php-version: "8.2" + php-version: "8.4" composer-flags: "--ignore-platform-req=php+" + experimental: true + - operating-system: "macos-latest" + php-version: "8.3" + composer-flags: "" + experimental: false + - operating-system: "windows-latest" + php-version: "8.3" + composer-flags: "" experimental: false steps: @@ -162,7 +170,7 @@ jobs: matrix: include: - operating-system: "ubuntu-latest" - php-version: "8.1" + php-version: "8.3" steps: - name: "Coveralls" @@ -182,7 +190,7 @@ jobs: matrix: include: - operating-system: "ubuntu-latest" - php-version: "8.1" + php-version: "8.3" steps: - name: "Checkout" diff --git a/composer.json b/composer.json index 0a8cb35..62c1489 100644 --- a/composer.json +++ b/composer.json @@ -30,7 +30,7 @@ } ], "require": { - "php": ">=7.4.0 <8.3.0", + "php": "7.4 - 8.3", "ext-dom": "*", "orisai/exceptions": "^1.1.0", "symfony/polyfill-php80": "^1.26.0"