From 36eb3199f7f0b39d074f2f0eed8c1ea5c8d882df Mon Sep 17 00:00:00 2001 From: Jack Wakefield Date: Mon, 20 Feb 2023 13:33:09 +0000 Subject: [PATCH] Add support for Laravel 10 --- README.md | 2 +- composer.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3d92d33..6d6c808 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Laravel pivot SoftDeletes for Laravel 5.8 & 6.x & 7.x & 8.x & 9.x +# Laravel pivot SoftDeletes for Laravel 5.8 to 10.x ## Installation diff --git a/composer.json b/composer.json index b176e7e..37e14b9 100644 --- a/composer.json +++ b/composer.json @@ -16,10 +16,10 @@ } ], "require": { - "illuminate/database": "^5.8|^6.0|^7.0|^8.0|^9.0" + "illuminate/database": ">=5.8 <11.0" }, "require-dev": { - "laravel/framework": "^5.8|^6.0|^7.0|^8.0|^9.0", + "laravel/framework": ">=5.8 <11.0", "mockery/mockery": "^1.4.4", "orchestra/testbench-core": "^7.1", "phpunit/phpunit": "^9.5.8"