Cant find context builder that supports xxx.xxx
404 Not Found - NotFoundHttpException
One way to fix it is to comment out check of fsi_resource_repository.map_builder service.
AdminBundle/DependencyInjection/FSIAdminExtension.php:
public function load(array $configs, ContainerBuilder $container)
{
$configuration = new Configuration();
$config = $this->processConfiguration($configuration, $configs);
$this->setTemplateParameters($container, $config['templates']);
$loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
$loader->load('services.xml');
// if ($container->has('fsi_resource_repository.map_builder')) {
$loader->load('resource_repository.xml');
// }
}
But it is not proper way to fix :D