From b36f216c03f096cd59cc8b1ebfa41a926bfe8e78 Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Sat, 31 Oct 2020 20:29:08 +0100 Subject: [PATCH] Drop PHP 7.2 support --- .github/workflows/tests.yml | 5 +---- composer.json | 2 +- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 50a7313..449d5e6 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -13,11 +13,8 @@ jobs: strategy: fail-fast: true matrix: - php: [7.2, 7.3, 7.4, 8.0] + php: [7.3, 7.4, 8.0] laravel: [^7.0, ^8.0] - exclude: - - php: 7.2 - laravel: ^8.0 name: P${{ matrix.php }} - L${{ matrix.laravel }} diff --git a/composer.json b/composer.json index a3190ad..881feca 100644 --- a/composer.json +++ b/composer.json @@ -17,7 +17,7 @@ } ], "require": { - "php": "^7.2|^8.0", + "php": "^7.3|^8.0", "illuminate/contracts": "^7.14|^8.0", "illuminate/filesystem": "^7.14|^8.0", "illuminate/support": "^7.14|^8.0",