Skip to content

Commit

Permalink
Fix bundle loading order
Browse files Browse the repository at this point in the history
  • Loading branch information
ausi committed Oct 1, 2020
1 parent 7acd689 commit 047b489
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/ContaoManagerPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,11 @@ public function getBundles(ParserInterface $parser)
{
return [
BundleConfig::create(RockSolidSliderBundle::class)
->setLoadAfter([ContaoCoreBundle::class])
->setLoadAfter([ContaoNewsBundle::class])
->setLoadAfter([ContaoCalendarBundle::class])
->setLoadAfter([
ContaoCoreBundle::class,
ContaoNewsBundle::class,
ContaoCalendarBundle::class,
])
->setReplace(['rocksolid-slider']),
];
}
Expand Down

0 comments on commit 047b489

Please sign in to comment.