From 01cc89721031972df0d40af8510a98708e3bf862 Mon Sep 17 00:00:00 2001 From: Laravel Shift Date: Tue, 21 Feb 2023 16:07:16 -0500 Subject: [PATCH] Laravel 10.x Compatibility (#9) Co-authored-by: Pascal Baljet --- .github/workflows/run-tests.yml | 6 ++++-- composer.json | 14 +++++++------- 2 files changed, 11 insertions(+), 9 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 5805886..a527b20 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -8,11 +8,13 @@ jobs: strategy: fail-fast: true matrix: - php: [8.2, 8.1, 8.0] - laravel: [9.*] + php: [8.2, 8.1] + laravel: [10.*, 9.*] db: [mysql, postgres, sqlite] dependency-version: [prefer-lowest, prefer-stable] include: + - laravel: 10.* + testbench: 8.* - laravel: 9.* testbench: 7.* diff --git a/composer.json b/composer.json index d14acfb..84939be 100644 --- a/composer.json +++ b/composer.json @@ -16,14 +16,14 @@ } ], "require": { - "php": "^8.0|^8.1|^8.2", - "illuminate/support": "^9.0", - "nesbot/carbon": "^2.63" + "php": "^8.1|^8.2", + "illuminate/support": "^9.0|^10.0", + "nesbot/carbon": "^2.66" }, "require-dev": { - "mockery/mockery": "^1.3.3", - "orchestra/testbench": "7.0", - "phpunit/phpunit": "^9.4" + "mockery/mockery": "^1.4.4", + "orchestra/testbench": "^7.0|^8.0", + "phpunit/phpunit": "^9.5" }, "autoload": { "psr-4": { @@ -44,4 +44,4 @@ }, "minimum-stability": "dev", "prefer-stable": true -} +} \ No newline at end of file