From 193eaedf5e2432abf852efcbd849f34966ced9e7 Mon Sep 17 00:00:00 2001 From: 77web Date: Mon, 13 May 2024 16:10:29 +0900 Subject: [PATCH] dropped support for laravel v6, v7, v8 --- .github/workflows/ci.yml | 2 +- composer.json | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 00f8ddc..4ee6f0d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: strategy: matrix: php: ['8.0', '8.1', '8.2'] - laravel: ['8', '9', '10'] + laravel: ['9', '10', '11'] exclude: - php: '8.0' laravel: '10' diff --git a/composer.json b/composer.json index ed07ffe..a8d0425 100644 --- a/composer.json +++ b/composer.json @@ -20,11 +20,11 @@ ], "require": { "php": "^7.2.5|^8.0", - "illuminate/auth": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", - "illuminate/config": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", - "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", - "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", - "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", + "illuminate/auth": "^9.0|^10.0|^11.0", + "illuminate/config": "^9.0|^10.0|^11.0", + "illuminate/contracts": "^9.0|^10.0|^11.0", + "illuminate/support": "^9.0|^10.0|^11.0", + "illuminate/http": "^9.0|^10.0|^11.0", "laravel-doctrine/orm": "^2.0" }, "suggest": {