From c78054662b3593ecaada0449c98290a191b05440 Mon Sep 17 00:00:00 2001 From: Propaganistas Date: Sat, 3 Feb 2024 13:35:26 +0100 Subject: [PATCH] get ready for laravel 11 --- .github/workflows/test.yml | 6 +++++- composer.json | 8 ++++---- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c0e26ca..10d25bc 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,11 +14,15 @@ jobs: fail-fast: false matrix: php: [ 8.0, 8.1, 8.2, 8.3 ] - laravel: [ 9, 10 ] + laravel: [ 9, 10, 11 ] stability: [ prefer-lowest, prefer-stable ] exclude: - php: 8.0 laravel: 10 + - php: 8.0 + laravel: 11 + - php: 8.1 + laravel: 11 name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} (${{ matrix.stability }}) diff --git a/composer.json b/composer.json index 2e4034a..6cbd96b 100644 --- a/composer.json +++ b/composer.json @@ -17,10 +17,10 @@ ], "require": { "php": "^8.0", - "illuminate/config": "^9.0|^10.0", - "illuminate/container": "^9.0|^10.0", - "illuminate/routing": "^9.0|^10.0", - "illuminate/support": "^9.0|^10.0", + "illuminate/config": "^9.0|^10.0|^11.0", + "illuminate/container": "^9.0|^10.0|^11.0", + "illuminate/routing": "^9.0|^10.0|^11.0", + "illuminate/support": "^9.0|^10.0|^11.0", "jenssegers/optimus": "^1.0" }, "require-dev": {