From 1a08d935de44d48e993cad9e926373fe91a09c6a Mon Sep 17 00:00:00 2001 From: Riley Aven Date: Wed, 29 May 2024 19:27:40 -0400 Subject: [PATCH] Support Laravel 11, test php 8.3 --- .github/workflows/run-tests.yml | 4 +++- composer.json | 6 +++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index bb8f683..0b47071 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -48,10 +48,12 @@ jobs: fail-fast: true matrix: os: [ubuntu-latest] - php: [8.1, 8.2] + php: [8.1, 8.2, 8.3] stability: [prefer-lowest, prefer-stable] include: - testbench: 8.* + - testbench: 9.* + php: 8.3 name: P${{ matrix.php }} - ${{ matrix.stability }} - ${{ matrix.os }} diff --git a/composer.json b/composer.json index 3161a46..4b4cb75 100644 --- a/composer.json +++ b/composer.json @@ -3,14 +3,14 @@ "description": "A beautiful way to create dynamic code", "type": "library", "require": { - "illuminate/conditionable": "^10", - "illuminate/macroable": "^10" + "illuminate/conditionable": "^10|^11", + "illuminate/macroable": "^10|^11" }, "require-dev": { "laravel/pint": "^1.0", "spatie/invade": "^2.0", "mockery/mockery": "^1.6", - "nunomaduro/collision": "^7", + "nunomaduro/collision": "^7|^8", "pestphp/pest": "^2.9", "pestphp/pest-plugin-arch": "^2.0", "phpstan/extension-installer": "^1.1",