/**
  * Send the JSON configuration file for a specified project
  * @param string $repository Lizmap Repository
  * @param string $project Name of the project
  * @return JSON configuration file for the specified project.
  */
 function getProjectConfig()
 {
     // Get parameters
     if (!$this->getServiceParameters()) {
         return $this->serviceException();
     }
     $rep = $this->getResponse('text');
     $rep->content = $this->project->getUpdatedConfig();
     return $rep;
 }