/**
  * @return string[]
  */
 protected function getRepositoryNames()
 {
     $keys = $this->container->idsByPrefix('repository');
     $mapper = function ($key) {
         return explode('.', $key)[1];
     };
     return array_values(array_map($mapper, $keys));
 }