From 8f1afb810189c256afa9936dbbcc81ae5f3e302a Mon Sep 17 00:00:00 2001 From: Alexandre D'Eschambeault Date: Thu, 9 May 2024 10:26:27 -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 b876235..b65d59a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -11,11 +11,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 b296ecf..f3b4f4d 100644 --- a/composer.json +++ b/composer.json @@ -18,12 +18,12 @@ "require": { "php": "^8.1", "exolnet/laravel-html-list": "^3.0", - "illuminate/support": "^10.0" + "illuminate/support": "^10.0|^11.0" }, "require-dev": { "exolnet/phpcs-config": "^2.0", "mockery/mockery": "^1.5.1", - "orchestra/testbench": "^8.0", + "orchestra/testbench": "^8.0|^9.0", "phpunit/phpunit": "^10.5", "squizlabs/php_codesniffer": "^3.7.1" },