1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-09 00:22:53 +00:00

forward GitLab driver options to remote filesystem

This commit is contained in:
Steve Müller 2017-04-26 16:59:50 +02:00
parent e3a23c0047
commit 1d29fa04b1
2 changed files with 47 additions and 6 deletions

View file

@ -160,7 +160,9 @@ abstract class VcsDriver implements VcsDriverInterface
*/
protected function getContents($url)
{
return $this->remoteFilesystem->getContents($this->originUrl, $url, false);
$options = isset($this->repoConfig['options']) ? $this->repoConfig['options'] : array();
return $this->remoteFilesystem->getContents($this->originUrl, $url, false, $options);
}
/**