From d423440fafa71a3ffe51c69507dc2ffa70a821ff Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Fri, 22 Jul 2022 16:55:59 +0200 Subject: [PATCH] Drop support for Laravel 8 and PHP 7.3 & 7.4 --- .github/workflows/tests.yml | 9 ++------- composer.json | 12 ++++++------ 2 files changed, 8 insertions(+), 13 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 1b98740..cedb800 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -13,13 +13,8 @@ jobs: strategy: fail-fast: true matrix: - php: [7.3, 7.4, 8.0, 8.1] - laravel: [^8.0, ^9.0] - exclude: - - php: 7.3 - laravel: ^9.0 - - php: 7.4 - laravel: ^9.0 + php: ['8.0', 8.1] + laravel: [^9.0] name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} diff --git a/composer.json b/composer.json index f572cd0..609b2e2 100644 --- a/composer.json +++ b/composer.json @@ -10,14 +10,14 @@ } ], "require": { - "php": "^7.3|^8.0", - "illuminate/console": "^8.42|^9.0", - "illuminate/filesystem": "^8.42|^9.0", - "illuminate/support": "^8.82|^9.0", - "illuminate/validation": "^8.42|^9.0" + "php": "^8.0", + "illuminate/console": "^9.0", + "illuminate/filesystem": "^9.0", + "illuminate/support": "^9.0", + "illuminate/validation": "^9.0" }, "require-dev": { - "orchestra/testbench": "^6.23|^7.0" + "orchestra/testbench": "^7.0" }, "autoload": { "psr-4": {