From 399919401de282806a80bccba760eb334a97767b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Barto=C5=A1?= Date: Fri, 21 Jun 2024 15:42:23 +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 0ad6310..6fc565d 100644 --- a/composer.json +++ b/composer.json @@ -21,7 +21,7 @@ } ], "require": { - "php": ">=7.4.0 <8.3.0", + "php": "7.4 - 8.3", "ext-mbstring": "*", "composer-plugin-api": "^2.0.0", "nette/neon": "^2.4.0|^3.0.0",