From 5748d8f12d4bdc8c7f877252f36644bea25d0a37 Mon Sep 17 00:00:00 2001 From: Jon Nott Date: Thu, 21 Mar 2024 14:12:06 +0000 Subject: [PATCH 1/2] Laravel 11.x support --- composer.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/composer.json b/composer.json index aa1eec17..e1810d6d 100644 --- a/composer.json +++ b/composer.json @@ -19,18 +19,18 @@ "php": "^8.1.0", "ext-json": "*", "doctrine/dbal": "^3.1", - "illuminate/bus": "^9.0|^10.0", - "illuminate/console": "^9.0|^10.0", - "illuminate/contracts": "^9.0|^10.0", - "illuminate/database": "^9.0|^10.0", - "illuminate/events": "^9.0|^10.0", - "illuminate/notifications": "^9.0|^10.0", + "illuminate/bus": "^9.0|^10.0|^11.0", + "illuminate/console": "^9.0|^10.0|^11.0", + "illuminate/contracts": "^9.0|^10.0|^11.0", + "illuminate/database": "^9.0|^10.0|^11.0", + "illuminate/events": "^9.0|^10.0|^11.0", + "illuminate/notifications": "^9.0|^10.0|^11.0", "laravelcollective/html": "^6.0" }, "require-dev": { "mockery/mockery": "^1.0", - "orchestra/testbench" : "^8.0", - "phpunit/phpunit": "^9.0" + "orchestra/testbench" : "^8.0|^9.0", + "phpunit/phpunit": "^9.0|^10.0|^11.0" }, "suggest": { "nexmo/client": "Required for sms notifications." From f921d068f368a5b8c8614873b608ec6f2fae39e2 Mon Sep 17 00:00:00 2001 From: Jon Nott Date: Thu, 21 Mar 2024 13:46:38 +0000 Subject: [PATCH 2/2] update test matrix --- .github/workflows/laravel.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/laravel.yml b/.github/workflows/laravel.yml index a6c6bdb1..679f036f 100644 --- a/.github/workflows/laravel.yml +++ b/.github/workflows/laravel.yml @@ -9,12 +9,17 @@ jobs: fail-fast: true matrix: os: [ ubuntu-latest ] - php: [ 8.1 ] - laravel: [ 10.* ] + php: [ 8.1, 8.2 ] + laravel: [ 10.*, 11.* ] stability: [ prefer-stable ] include: - laravel: 10.* testbench: ^8.0 + - laravel: 11.* + testbench: ^9.0 + exclude: + - laravel: 11.* + php: 8.1 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }} steps: