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:
parent
e3a23c0047
commit
1d29fa04b1
2 changed files with 47 additions and 6 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue