Procházet zdrojové kódy

add missing array-replace-recursive

Rob Bast před 9 roky
rodič
revize
5b85ee409c
1 změnil soubory, kde provedl 1 přidání a 0 odebrání
  1. 1 0
      src/Composer/Factory.php

+ 1 - 0
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);