/**
  * Initialize GITLab downloader
  *
  * @param array $repoConfig
  * @param IOInterface $io
  * @param Config $config
  * @param EventDispatcher $dispatcher
  * @param array $drivers
  */
 public function __construct(array $repoConfig, IOInterface $io, Config $config, EventDispatcher $dispatcher = null, array $drivers = null)
 {
     $drivers[self::TYPE] = 'AndKirby\\Composer\\MultiRepo\\Repository\\Vcs\\GitLabDriver';
     parent::__construct($repoConfig, $io, $config, $dispatcher, $drivers);
 }
 /**
  * Get VCS namespace type
  *
  * @return array
  */
 protected function getVcsTypes()
 {
     return VcsNamespaceRepository::getTypes();
 }