From f0d069893c7ee137a70af859e35670def2b6dde4 Mon Sep 17 00:00:00 2001 From: Jasper Zonneveld Date: Thu, 24 Oct 2024 21:13:07 +0200 Subject: [PATCH] build: add Laravel 11 support --- .github/workflows/tests.yml | 6 +++++- composer.json | 4 ++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index e772e51..47f2123 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -10,13 +10,17 @@ jobs: fail-fast: false matrix: php: [ '8.0', '8.1', '8.2' ] - laravel: [ '8.*', '9.*', '10.*' ] + laravel: [ '8.*', '9.*', '10.*', '11.*' ] stability: [ prefer-lowest, prefer-stable ] exclude: - laravel: '8.*' php: '8.2' - laravel: '10.*' php: '8.0' + - laravel: '11.*' + php: '8.0' + - laravel: '11.*' + php: '8.1' name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} diff --git a/composer.json b/composer.json index 06dc5d1..ba225e6 100644 --- a/composer.json +++ b/composer.json @@ -21,8 +21,8 @@ ], "require": { "php": "^8.0", - "illuminate/encryption": "^8.0|^9.0|^10.0", - "illuminate/support": "^8.0|^9.0|^10.0", + "illuminate/encryption": "^8.0|^9.0|^10.0|^11.0", + "illuminate/support": "^8.0|^9.0|^10.0|^11.0", "league/flysystem": "^2.0|^3.0" }, "require-dev": {