From d169c0f2dab0831bd3cfc32cd667a05192ab5336 Mon Sep 17 00:00:00 2001 From: Simon Gaudreau Date: Mon, 6 May 2024 06:54:59 -0400 Subject: [PATCH] build(deps): add Laravel 11 support --- .github/workflows/tests.yml | 7 ++++++- composer.json | 4 ++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 85fe9d2..489a6f1 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -10,11 +10,16 @@ jobs: fail-fast: true matrix: php: [8.1, 8.2, 8.3] - laravel: [10.*] + laravel: [10.*, 11.*] dependency-version: [prefer-lowest, prefer-stable] + exclude: + - php: 8.1 + laravel: 11.* include: - laravel: 10.* testbench: 8.* + - laravel: 11.* + testbench: 9.* name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} diff --git a/composer.json b/composer.json index ddbc94c..33527ba 100644 --- a/composer.json +++ b/composer.json @@ -22,13 +22,13 @@ ], "require": { "php": "^8.1", - "illuminate/support": "^10.0", + "illuminate/support": "^10.0|^11.0", "spatie/laravel-html": "^3.2" }, "require-dev": { "exolnet/phpcs-config": "^2.0", "mockery/mockery": "^1.5.1", - "orchestra/testbench": "^7.0|^8.0", + "orchestra/testbench": "^8.0|^9.0", "phpunit/phpunit": "^10.5", "squizlabs/php_codesniffer": "^3.6" },