From 7aab82084915f6df039d616fbdb25e00bba64456 Mon Sep 17 00:00:00 2001 From: Julius Kiekbusch Date: Wed, 14 Feb 2024 16:17:46 +0100 Subject: [PATCH] Add Laravel 11 Support --- .github/workflows/run-tests.yml | 4 +++- composer.json | 16 ++++++++-------- 2 files changed, 11 insertions(+), 9 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 0a11caff4..7404ff22c 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -9,11 +9,13 @@ jobs: fail-fast: false matrix: php: [8.3, 8.2] - laravel: [10.*] + laravel: [10.*, 11.*] dependency-version: [prefer-lowest, prefer-stable] include: - laravel: 10.* testbench: ^8.0 + - laravel: 11.* + testbench: ^9.0 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} diff --git a/composer.json b/composer.json index c497a7300..35a76166c 100644 --- a/composer.json +++ b/composer.json @@ -26,12 +26,13 @@ "ext-exif": "*", "ext-fileinfo": "*", "ext-json": "*", - "illuminate/bus": "^10.0", - "illuminate/conditionable": "^10.0", - "illuminate/console": "^10.0", - "illuminate/database": "^10.0", - "illuminate/pipeline": "^10.0", - "illuminate/support": "^10.0", + "illuminate/bus": "^10.0|^11.0", + "illuminate/conditionable": "^10.0|^11.0", + "illuminate/console": "^10.0|^11.0", + "illuminate/database": "^10.0|^11.0", + "illuminate/pipeline": "^10.0|^11.0", + "illuminate/support": "^10.0|^11.0", + "laravel/framework": "^11.0", "maennchen/zipstream-php": "^3.1", "spatie/image": "^3.3.2", "spatie/laravel-package-tools": "^1.16.1", @@ -43,12 +44,11 @@ "ext-pdo_sqlite": "*", "ext-zip": "*", "aws/aws-sdk-php": "^3.293.10", - "doctrine/dbal": "^2.13.9", "guzzlehttp/guzzle": "^7.8.1", "league/flysystem-aws-s3-v3": "^3.22", "mockery/mockery": "^1.6.7", "larastan/larastan": "^2.7", - "orchestra/testbench": "^7.0|^8.17", + "orchestra/testbench": "^7.0|^8.17|^9.0", "pestphp/pest": "^2.28", "phpstan/extension-installer": "^1.3.1", "spatie/laravel-ray": "^1.33",