From 55ab73cc16b3bab575de48d25c1a6092a700573a Mon Sep 17 00:00:00 2001 From: James French Date: Tue, 30 Aug 2022 19:20:54 -0700 Subject: [PATCH 1/7] hopefully fixing dispatcher::fire does not exist untested code might work --- src/Baum/Move.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Baum/Move.php b/src/Baum/Move.php index 8abed059..5bd0f35f 100644 --- a/src/Baum/Move.php +++ b/src/Baum/Move.php @@ -352,7 +352,7 @@ protected function fireMoveEvent($event, $halt = true) { // but we relay the event into the node instance. $event = "eloquent.{$event}: ".get_class($this->node); - $method = $halt ? 'until' : 'fire'; + $method = $halt ? 'until' : 'dispatch'; return static::$dispatcher->$method($event, $this->node); } From 07ab70f319fa3354162690476cfe0a1777b1db30 Mon Sep 17 00:00:00 2001 From: jasonfontaine Date: Mon, 12 Feb 2024 10:47:33 -0800 Subject: [PATCH 2/7] Update composer.json for laravel 10 --- composer.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/composer.json b/composer.json index bee30297..804b0eda 100644 --- a/composer.json +++ b/composer.json @@ -19,12 +19,12 @@ } ], "require": { - "php": "^8.0", - "illuminate/console": "^9.0", - "illuminate/database": "^9.0", - "illuminate/events": "^9.0", - "illuminate/filesystem": "^9.0", - "illuminate/support": "^9.0" + "php": "^8.1", + "illuminate/console": "^10.0", + "illuminate/database": "^10.0", + "illuminate/events": "^10.0", + "illuminate/filesystem": "^10.0", + "illuminate/support": "^10.0" }, "require-dev": { "phpunit/phpunit": "^9.5.10", From b1eecf23ec8840a8306a0f73fcfeeecdcbe9db4a Mon Sep 17 00:00:00 2001 From: jasonfontaine Date: Mon, 6 Jan 2025 15:54:19 -0800 Subject: [PATCH 3/7] Update composer.json for Laravel 11 --- composer.json | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/composer.json b/composer.json index 804b0eda..ae6d0581 100644 --- a/composer.json +++ b/composer.json @@ -19,12 +19,7 @@ } ], "require": { - "php": "^8.1", - "illuminate/console": "^10.0", - "illuminate/database": "^10.0", - "illuminate/events": "^10.0", - "illuminate/filesystem": "^10.0", - "illuminate/support": "^10.0" + "php": "^8.2", }, "require-dev": { "phpunit/phpunit": "^9.5.10", From ad3583eac7005f44f20ca01ec62bc69a1b48e3cc Mon Sep 17 00:00:00 2001 From: jasonfontaine Date: Mon, 6 Jan 2025 15:55:55 -0800 Subject: [PATCH 4/7] Update composer.json for Laravel 11 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index ae6d0581..b89f08eb 100644 --- a/composer.json +++ b/composer.json @@ -19,7 +19,7 @@ } ], "require": { - "php": "^8.2", + "php": "^8.2" }, "require-dev": { "phpunit/phpunit": "^9.5.10", From 356aa00061870d9c622e4a53ef67586c919c357c Mon Sep 17 00:00:00 2001 From: jasonfontaine Date: Mon, 6 Jan 2025 16:53:26 -0800 Subject: [PATCH 5/7] Update composer.json for Laravel 11 --- composer.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index b89f08eb..d929c32d 100644 --- a/composer.json +++ b/composer.json @@ -19,7 +19,12 @@ } ], "require": { - "php": "^8.2" + "php": "^8.2", + "illuminate/console": "^11.0", + "illuminate/database": "^11.0", + "illuminate/events": "^11.0", + "illuminate/filesystem": "^11.0", + "illuminate/support": "^11.0" }, "require-dev": { "phpunit/phpunit": "^9.5.10", From 3983b43debb2b600338fd6af233bfad6f4a21ae6 Mon Sep 17 00:00:00 2001 From: jasonfontaine Date: Tue, 7 Jan 2025 10:17:16 -0800 Subject: [PATCH 6/7] Update composer.json for Laravel 10/11 --- composer.json | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/composer.json b/composer.json index d929c32d..c49b2690 100644 --- a/composer.json +++ b/composer.json @@ -19,12 +19,7 @@ } ], "require": { - "php": "^8.2", - "illuminate/console": "^11.0", - "illuminate/database": "^11.0", - "illuminate/events": "^11.0", - "illuminate/filesystem": "^11.0", - "illuminate/support": "^11.0" + "php": "^8.1|^8.2", }, "require-dev": { "phpunit/phpunit": "^9.5.10", From def0ddd41b14b8431c7bb481ff0b3ebe001f213c Mon Sep 17 00:00:00 2001 From: jasonfontaine Date: Tue, 7 Jan 2025 10:18:11 -0800 Subject: [PATCH 7/7] Update composer.json for Laravel 10/11 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index c49b2690..3a7f44f8 100644 --- a/composer.json +++ b/composer.json @@ -19,7 +19,7 @@ } ], "require": { - "php": "^8.1|^8.2", + "php": "^8.1|^8.2" }, "require-dev": { "phpunit/phpunit": "^9.5.10",