diff --git a/composer.json b/composer.json index a4a41f4..709455d 100644 --- a/composer.json +++ b/composer.json @@ -23,7 +23,7 @@ "ext-mbstring": "*", "illuminate/support": "^10.0|^11.0", "spatie/flare-client-php": "^1.3.5", - "spatie/ignition": "^1.13", + "spatie/ignition": "^1.13.2", "symfony/console": "^6.2.3|^7.0", "symfony/var-dumper": "^6.2.3|^7.0" }, diff --git a/src/IgnitionServiceProvider.php b/src/IgnitionServiceProvider.php index 0e9f0dd..0f2e2a0 100644 --- a/src/IgnitionServiceProvider.php +++ b/src/IgnitionServiceProvider.php @@ -145,8 +145,7 @@ protected function registerIgnition(): void $this->app->singleton( Ignition::class, - fn () => (new Ignition()) - ->applicationPath(base_path()) + fn () => (new Ignition($this->app->make(Flare::class)))->applicationPath(base_path()) ); }