From 37be80b06e57b227a686edf300e582098c07d03d Mon Sep 17 00:00:00 2001 From: Jurian Arie <28654085+JurianArie@users.noreply.github.com> Date: Fri, 15 Mar 2024 22:43:36 +0100 Subject: [PATCH] Support Laravel 10 --- .github/workflows/tests.yml | 12 ++++++++++-- composer.json | 4 ++-- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3589ecf..0181968 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -10,11 +10,19 @@ jobs: strategy: fail-fast: true matrix: - laravel: [ 9.*, 10.* ] - php: [ 8.0, 8.1 ] + laravel: [ 9.*, 10.*, 11.* ] + php: [ 8.0, 8.1, 8.2, 8.3 ] exclude: + - laravel: 9.* + php: 8.2 + - laravel: 9.* + php: 8.3 - laravel: 10.* php: 8.0 + - laravel: 11.* + php: 8.0 + - laravel: 11.* + php: 8.1 name: Laravel ${{ matrix.laravel }} on PHP ${{ matrix.php }} steps: - name: Checkout code diff --git a/composer.json b/composer.json index fa8bf85..0f42d0a 100644 --- a/composer.json +++ b/composer.json @@ -14,11 +14,11 @@ "ext-json": "*", "guzzlehttp/guzzle": "^6.2 || ^7.0", "guzzlehttp/psr7": "^1.0 || ^2.0", - "laravel/framework": "^5.5 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0" + "laravel/framework": "^5.5 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0" }, "require-dev": { "mockery/mockery": "^1.3.1", - "orchestra/testbench": "^3.5 || ^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0", + "orchestra/testbench": "^3.5 || ^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0", "phpunit/phpunit": "^7.5 || ^8.0 || ^9.0" }, "autoload": {