Example #1
0
 /**
  * @return string
  */
 protected function getDefaultConfigPath()
 {
     if ($this->configDefaultPath) {
         return $this->configDefaultPath;
     }
     $locator = new ConfigurationFile($this->filesystem);
     $this->configDefaultPath = $locator->locate(getcwd(), $this->initializeComposerHelper()->getRootPackage());
     return $this->configDefaultPath;
 }