From 14787ce259cfb1b1468e3ef6e401422e2079ce8b Mon Sep 17 00:00:00 2001 From: Kristijan Maric Date: Mon, 8 Jan 2024 12:26:57 +0100 Subject: [PATCH 1/2] add support for laravel 10 --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index f21b859..85a45db 100644 --- a/composer.json +++ b/composer.json @@ -16,9 +16,9 @@ "php": "^8.1", "ext-curl": "*", "ext-simplexml": "*", - "illuminate/collections": "^8.56 || ^9.0", - "illuminate/contracts": "^8.0 || ^9.0", - "illuminate/support": "^8.0 || ^9.0", + "illuminate/collections": "^8.56 || ^9.0 || ^10.0", + "illuminate/contracts": "^8.0 || ^9.0 || ^10.0", + "illuminate/support": "^8.0 || ^9.0 || ^10.0", "nesbot/carbon": "^2.67", "symfony/http-client": "^5.4.21 || ^6.3" }, From f7edeca5458a59d896d7a157b9093a40b2c79be9 Mon Sep 17 00:00:00 2001 From: Kristijan Maric Date: Mon, 8 Jan 2024 13:25:23 +0100 Subject: [PATCH 2/2] drop support for laravel 8 --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 85a45db..c27ba09 100644 --- a/composer.json +++ b/composer.json @@ -16,9 +16,9 @@ "php": "^8.1", "ext-curl": "*", "ext-simplexml": "*", - "illuminate/collections": "^8.56 || ^9.0 || ^10.0", - "illuminate/contracts": "^8.0 || ^9.0 || ^10.0", - "illuminate/support": "^8.0 || ^9.0 || ^10.0", + "illuminate/collections": "^9.0 || ^10.0", + "illuminate/contracts": "^9.0 || ^10.0", + "illuminate/support": "^9.0 || ^10.0", "nesbot/carbon": "^2.67", "symfony/http-client": "^5.4.21 || ^6.3" },