Skip to content

Commit

Permalink
Merge pull request #187 from spatie/fix-octane
Browse files Browse the repository at this point in the history
Fix octane
  • Loading branch information
rubenvanassche authored Apr 16, 2024
2 parents 5570333 + f459353 commit c93fcad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
Expand Down
3 changes: 1 addition & 2 deletions src/IgnitionServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -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())
);
}

Expand Down

0 comments on commit c93fcad

Please sign in to comment.