From 5b85ee409cba29f1c70f2cff6115eb5ec265a1c9 Mon Sep 17 00:00:00 2001 From: Rob Bast Date: Fri, 22 Jan 2016 14:29:29 +0100 Subject: [PATCH] add missing array-replace-recursive --- src/Composer/Factory.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Composer/Factory.php b/src/Composer/Factory.php index 7998c8be6..e6718278f 100644 --- a/src/Composer/Factory.php +++ b/src/Composer/Factory.php @@ -595,6 +595,7 @@ class Factory if ($config && $config->get('capath')) { $remoteFilesystemOptions['ssl']['capath'] = $config->get('capath'); } + $remoteFilesystemOptions = array_replace_recursive($remoteFilesystemOptions, $options); } try { $remoteFilesystem = new RemoteFilesystem($io, $config, $remoteFilesystemOptions, $disableTls);