<?php

declare(strict_types=1);

/*
 * Provides contao components scrollmagic and anime.js.
 *
 * @author     vonRotenberg <https://www.vonrotenberg.de>
 * @license    LGPL-3.0+
 */

namespace vonRotenberg\ScrollanimationBundle\ContaoManager;

use Contao\CoreBundle\ContaoCoreBundle;
use Contao\ManagerPlugin\Bundle\BundlePluginInterface;
use Contao\ManagerPlugin\Bundle\Config\BundleConfig;
use Contao\ManagerPlugin\Bundle\Parser\ParserInterface;
use vonRotenberg\ScrollanimationBundle\vonRotenbergScrollanimationBundle;

final class Plugin implements BundlePluginInterface
{
  public function getBundles(ParserInterface $parser): array
  {
    return [
      BundleConfig::create(vonRotenbergScrollanimationBundle::class),
    ];
  }
}