From c29c3c106b6562c853abb3196bc1251b269ff249 Mon Sep 17 00:00:00 2001 From: Jason Brodie Date: Wed, 22 Oct 2025 15:53:12 -0400 Subject: [PATCH 1/2] Allow Laravel 11 and 12 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 6aea050..48e5f29 100644 --- a/composer.json +++ b/composer.json @@ -10,7 +10,7 @@ } ], "require": { - "laravel/framework": "^10.0", + "laravel/framework": "^10.0|^11.0|^12.0", "softcreatr/jsonpath": "^0.7.2" }, "autoload": { From f2c7b3fa36a3e26dea868eed6f22e5e1296e8937 Mon Sep 17 00:00:00 2001 From: Jason Brodie Date: Wed, 22 Oct 2025 16:26:12 -0400 Subject: [PATCH 2/2] Fixed deprecation warning --- src/Etl.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Etl.php b/src/Etl.php index 7cbc4f1..405b08f 100644 --- a/src/Etl.php +++ b/src/Etl.php @@ -29,7 +29,7 @@ class Etl * @param Pipeline $pipeline * @return void */ - public function __construct(Container $container = null, Pipeline $pipeline = null) + public function __construct(?Container $container = null, Pipeline $pipeline = null) { $this->container = $container ?? Container::getInstance(); $this->pipeline = $pipeline ?? new Pipeline;