From 7517a99b1c0f8ff8e6a7a2e0d6cf8805117308db Mon Sep 17 00:00:00 2001 From: Michal Gebauer Date: Tue, 1 Dec 2015 20:26:49 +0100 Subject: [PATCH] Could not configure gitlab-oauth via CLI #3765 --- src/Composer/Config/JsonConfigSource.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Composer/Config/JsonConfigSource.php b/src/Composer/Config/JsonConfigSource.php index ed35aa0af..160dd393c 100644 --- a/src/Composer/Config/JsonConfigSource.php +++ b/src/Composer/Config/JsonConfigSource.php @@ -79,7 +79,7 @@ class JsonConfigSource implements ConfigSourceInterface public function addConfigSetting($name, $value) { $this->manipulateJson('addConfigSetting', $name, $value, function (&$config, $key, $val) { - if (preg_match('{^(github-oauth|http-basic|platform)\.}', $key)) { + if (preg_match('{^(gitlab-oauth|github-oauth|http-basic|platform)\.}', $key)) { list($key, $host) = explode('.', $key, 2); if ($this->authConfig) { $config[$key][$host] = $val; @@ -98,7 +98,7 @@ class JsonConfigSource implements ConfigSourceInterface public function removeConfigSetting($name) { $this->manipulateJson('removeConfigSetting', $name, function (&$config, $key) { - if (preg_match('{^(github-oauth|http-basic|platform)\.}', $key)) { + if (preg_match('{^(gitlab-oauth|github-oauth|http-basic|platform)\.}', $key)) { list($key, $host) = explode('.', $key, 2); if ($this->authConfig) { unset($config[$key][$host]);