From 5c1f2c0fde4e5ca69a61a7e4e5d4e465c3f8d08a Mon Sep 17 00:00:00 2001 From: Alexandre D'Eschambeault Date: Tue, 26 Mar 2024 09:29:51 -0400 Subject: [PATCH] build(deps): drop Laravel 9 support --- .github/workflows/tests.yml | 4 +--- composer.json | 14 +++++++------- 2 files changed, 8 insertions(+), 10 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index afd99d8..b1a62d3 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -10,11 +10,9 @@ jobs: fail-fast: true matrix: php: [8.1, 8.2] - laravel: [9.*, 10.*] + laravel: [10.*] dependency-version: [prefer-lowest, prefer-stable] include: - - laravel: 9.* - testbench: 7.* - laravel: 10.* testbench: 8.* diff --git a/composer.json b/composer.json index f7e176f..9def780 100644 --- a/composer.json +++ b/composer.json @@ -20,16 +20,16 @@ ], "require": { "php": "^8.1", - "illuminate/console": "^9.0|^10.0", - "illuminate/contracts": "^9.0|^10.0", - "illuminate/http": "^9.0|^10.0", - "illuminate/support": "^9.0|^10.0", - "illuminate/routing": "^9.0|^10.0", - "illuminate/translation": "^9.0|^10.0" + "illuminate/console": "^10.0", + "illuminate/contracts": "^10.0", + "illuminate/http": "^10.0", + "illuminate/support": "^10.0", + "illuminate/routing": "^10.0", + "illuminate/translation": "^10.0" }, "require-dev": { "mockery/mockery": "^1.4", - "orchestra/testbench": "^7.0|^8.0", + "orchestra/testbench": "^8.0", "phpunit/phpunit": "^9.3.3", "squizlabs/php_codesniffer": "^3.6" },