From c97849ccb2e9c4f4bf41dc6d15bf6d6113d619f3 Mon Sep 17 00:00:00 2001 From: lukinovec Date: Wed, 15 Feb 2023 17:46:44 +0100 Subject: [PATCH] Remove L6 and L8 support --- .github/workflows/ci.yml | 9 ++------- composer.json | 6 +++--- 2 files changed, 5 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8aab95e..faaa7a6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,13 +8,8 @@ jobs: strategy: fail-fast: true matrix: - php: ["8.0", "8.1"] - laravel: [6, 8, 9, 10] - exclude: - - laravel: 6 - php: "8.1" - - laravel: 10 - php: "8.0" + php: ["8.1"] + laravel: [9, 10] name: Tests (PHPUnit) - L${{ matrix.laravel }} diff --git a/composer.json b/composer.json index 06156e8..bccaf62 100644 --- a/composer.json +++ b/composer.json @@ -19,11 +19,11 @@ } }, "require": { - "illuminate/support": "^6.0|^8.0|^9.0|^10.0", - "illuminate/database": "^6.0|^8.0|^9.0|^10.0" + "illuminate/support": "^9.0|^10.0", + "illuminate/database": "^9.0|^10.0" }, "require-dev": { - "orchestra/testbench": "^4.0|^6.0|^7.0|^8.0" + "orchestra/testbench": "^7.0|^8.0" }, "minimum-stability": "dev", "prefer-stable": true