/**
  * Return array with data for all repositories
  *
  * @return array Data repositories
  */
 public function getRepositoriesJson()
 {
     $json_data = new Json($this->source_path . 'repositories.json');
     return $json_data->fetchContent();
 }
 /**
  * Return array with data for all Bugzilla l10n components
  *
  * @return array Data repositories
  */
 public function getBugzillaComponentsJson()
 {
     $json_data = new Json($this->source_path . 'bugzilla_components.json');
     return $json_data->fetchContent();
 }