From 54a216739939ca60fdaa66742ccd36780c3795f5 Mon Sep 17 00:00:00 2001 From: philippe Date: Thu, 23 Nov 2023 09:34:36 +0100 Subject: [PATCH] Allow php 8.3 --- .github/workflows/main.yml | 4 ++++ composer.json | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 99ec4dc5e..a8e731d3e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -20,6 +20,10 @@ jobs: env: LARAVEL: 10.* TESTBENCH: 8.* + - php: 8.3 + env: + LARAVEL: 10.* + TESTBENCH: 8.* env: ${{ matrix.env }} steps: - uses: actions/checkout@v2 diff --git a/composer.json b/composer.json index 8df7c3417..1c1cfac8b 100644 --- a/composer.json +++ b/composer.json @@ -12,7 +12,7 @@ } ], "require": { - "php": "8.2.*", + "php": "8.2.*|8.3.*", "laravel/framework": "^10.0", "intervention/image": "^2.7", "spatie/image-optimizer": "^1.6",