From 4e8058220c061bdd82eb68173e4fb4c609776a08 Mon Sep 17 00:00:00 2001 From: Zacharias Creutznacher Date: Thu, 7 Mar 2024 19:50:06 +0100 Subject: [PATCH] laravel 11 support --- .github/workflows/run-tests.yml | 5 ++++- composer.json | 8 ++++---- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 8a1e717..bd60efe 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -14,9 +14,12 @@ jobs: matrix: os: [ubuntu-latest, windows-latest] php: [8.3, 8.2, 8.1] - laravel: [10.*, 9.*] + laravel: [11.*, 10.*, 9.*] stability: [prefer-lowest, prefer-stable] include: + - laravel: 11.* + testbench: 9.* + carbon: ^2.63 - laravel: 10.* testbench: 8.* carbon: ^2.63 diff --git a/composer.json b/composer.json index 109cabb..d6df42c 100644 --- a/composer.json +++ b/composer.json @@ -17,15 +17,15 @@ ], "require": { "php": "^8.1", - "illuminate/contracts": "^9.0 || ^10.0", - "illuminate/database": "^9.0 || ^10.0", - "illuminate/support": "^9.0 || ^10.0", + "illuminate/contracts": "^9.0 || ^10.0 || ^11.0", + "illuminate/database": "^9.0 || ^10.0 || ^11.0", + "illuminate/support": "^9.0 || ^10.0 || ^11.0", "nesbot/carbon": "^2.66", "spatie/laravel-package-tools": "^1.13.0" }, "require-dev": { "nunomaduro/larastan": "^2.0.1", - "orchestra/testbench": "^7.0 || ^8.0", + "orchestra/testbench": "^7.0 || ^8.0 || ^9.0", "pestphp/pest": "^1.22 || ^2.0", "pestphp/pest-plugin-laravel": "^1.22 || ^2.0", "phpstan/extension-installer": "^1.1",