From 22ef1679370343f4c5d77891b2fc05387af953d8 Mon Sep 17 00:00:00 2001 From: Aron Rotteveel Date: Wed, 8 Sep 2021 14:44:42 +0200 Subject: [PATCH] Drop support for Laravel 6 (#26) There is a security advisory for http-foundation below 5.0.7 and this is the easiest way to guarantee that it is not being used, moving forward. --- .github/workflows/run-tests.yml | 4 +--- composer.json | 4 ++-- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 4c72cb4..d762f62 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -10,15 +10,13 @@ jobs: fail-fast: true matrix: php: [8.0, 7.4, 7.3] - laravel: [8.*, 7.*, 6.*] + laravel: [8.*, 7.*] dependency-version: [prefer-lowest, prefer-stable] include: - laravel: 8.* testbench: 6.* - laravel: 7.* testbench: 5.* - - laravel: 6.* - testbench: 4.* name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} diff --git a/composer.json b/composer.json index b112ef9..01c5c42 100644 --- a/composer.json +++ b/composer.json @@ -21,12 +21,12 @@ ], "require": { "php": "^7.3|^8.0", - "illuminate/http": "^6.0|^7.0|^8.0", + "illuminate/http": "^7.0|^8.0", "symfony/http-foundation": "^4.3.4|>=5.1.3" }, "require-dev": { "phpunit/phpunit": "^8.0 || ^9.0", - "orchestra/testbench": "^4.0|^5.0|^6.0", + "orchestra/testbench": "^5.0|^6.0", "mockery/mockery": "^1.4" }, "autoload": {