Skip to content

Commit

Permalink
🩹 Fix missing migration providers (#347)
Browse files Browse the repository at this point in the history
  • Loading branch information
retlehs authored Feb 6, 2024
1 parent ac83f18 commit 92491e9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Roots/Acorn/DefaultProviders.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ public function __construct(?array $providers = null)
$this->providers = Collection::make($this->providers)
->merge($this->acornProviders)
->filter(fn ($provider) => ! str_contains($provider, 'Illuminate\\Foundation\\'))
->push('Illuminate\\Foundation\\Providers\\ComposerServiceProvider')
->push('Illuminate\\Database\\MigrationServiceProvider')
->all();
}
}

0 comments on commit 92491e9

Please sign in to comment.