From 7f4a008425b8f547cc853b6bd5100bfca238b2ce Mon Sep 17 00:00:00 2001 From: Jess Archer Date: Fri, 8 Mar 2024 12:47:49 +1000 Subject: [PATCH] Remove support for Laravel 6 & 7, along with PHP 7.2 --- .github/workflows/tests.yml | 12 ++---------- composer.json | 6 +++--- 2 files changed, 5 insertions(+), 13 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index a4ba383f..7060e6e7 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -12,18 +12,10 @@ jobs: strategy: fail-fast: true matrix: - php: [7.2, 7.3, 7.4, "8.0", 8.1, 8.2, 8.3] - laravel: [6, 7, 8, 9, 10, 11] + php: [7.3, 7.4, "8.0", 8.1, 8.2, 8.3] + laravel: [8, 9, 10, 11] stability: ["prefer-lowest", "prefer-stable"] exclude: - - php: 7.2 - laravel: 8 - - php: 7.2 - laravel: 9 - - php: 7.2 - laravel: 10 - - php: 7.2 - laravel: 11 - php: 7.3 laravel: 9 - php: 7.3 diff --git a/composer.json b/composer.json index 3ec81cde..10b4b7ec 100644 --- a/composer.json +++ b/composer.json @@ -25,13 +25,13 @@ } }, "require": { - "php": "^7.2|~8.0.0|~8.1.0|~8.2.0|~8.3.0", + "php": "^7.3|~8.0.0|~8.1.0|~8.2.0|~8.3.0", "ext-json": "*", - "laravel/framework": "^6.0|^7.0|^8.74|^9.0|^10.0|^11.0" + "laravel/framework": "^8.74|^9.0|^10.0|^11.0" }, "require-dev": { "roave/security-advisories": "dev-master", - "orchestra/testbench": "^4.0|^5.0|^6.4|^7.0|^8.0|^9.0", + "orchestra/testbench": "^6.4|^7.0|^8.0|^9.0", "mockery/mockery": "^1.3.3", "phpunit/phpunit": "^8.0|^9.5.8|^10.4" },