From 6b916add543770823c00e8e61a253353b72a7689 Mon Sep 17 00:00:00 2001 From: itcdevteam Date: Wed, 21 May 2025 18:34:29 -0500 Subject: [PATCH 1/2] Laravel 12 support --- composer.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/composer.json b/composer.json index 2ae22ad8..761db226 100644 --- a/composer.json +++ b/composer.json @@ -16,20 +16,20 @@ } ], "require": { - "php": "^8.1.0", + "php": "^8.1|^8.2|^8.3", "ext-json": "*", - "doctrine/dbal": "^3.1", - "illuminate/bus": "^9.0|^10.0|^11.0", - "illuminate/console": "^9.0|^10.0|^11.0", - "illuminate/contracts": "^9.0|^10.0|^11.0", - "illuminate/database": "^9.0|^10.0|^11.0", - "illuminate/events": "^9.0|^10.0|^11.0", - "illuminate/notifications": "^9.0|^10.0|^11.0" + "doctrine/dbal": "^4.2", + "illuminate/bus": "^9.0|^10.0|^11.0|^12.0", + "illuminate/console": "^9.0|^10.0|^11.0|^12.0", + "illuminate/contracts": "^9.0|^10.0|^11.0|^12.0", + "illuminate/database": "^9.0|^10.0|^11.0|^12.0", + "illuminate/events": "^9.0|^10.0|^11.0|^12.0", + "illuminate/notifications": "^9.0|^10.0|^11.0|^12.0" }, "require-dev": { "mockery/mockery": "^1.0", - "orchestra/testbench" : "^8.0|^9.0", - "phpunit/phpunit": "^9.0|^10.0|^11.0" + "orchestra/testbench" : "^8.0|^9.0|^10.0", + "phpunit/phpunit": "^9.0|^10.0|^11.0|^12.0" }, "suggest": { "nexmo/client": "Required for sms notifications." From 21457f6424f0695c5ca638cf08379738eda44656 Mon Sep 17 00:00:00 2001 From: itcdevteam Date: Tue, 10 Jun 2025 20:16:40 +0300 Subject: [PATCH 2/2] Added back support for doctrine dbal v3.1 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 761db226..b9d56019 100644 --- a/composer.json +++ b/composer.json @@ -18,7 +18,7 @@ "require": { "php": "^8.1|^8.2|^8.3", "ext-json": "*", - "doctrine/dbal": "^4.2", + "doctrine/dbal": "^3.1|^4.2", "illuminate/bus": "^9.0|^10.0|^11.0|^12.0", "illuminate/console": "^9.0|^10.0|^11.0|^12.0", "illuminate/contracts": "^9.0|^10.0|^11.0|^12.0",