private function setupSimpleShopfile()
 {
     $this->simpleShopfile = new Shopfile();
     $this->simpleShopfile->addMergeRule(new MergeRule("config/settings_data.json"));
     $this->simpleShopfile->addProtectRule(new ProtectRule("locales/*"));
     $this->simpleShopfile->addReplaceRule(new ReplaceRule("assets/*"));
     $this->simpleShopfile->addReplaceRule(new ReplaceRule("config/settings_schema.json"));
     $this->simpleShopfile->addReplaceRule(new ReplaceRule("layout/*"));
     $this->simpleShopfile->addReplaceRule(new ReplaceRule("snippets/*"));
     $this->simpleShopfile->addReplaceRule(new ReplaceRule("templates/*"));
 }