From efc105eac143d961bef5f6bea3c6190187266749 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C5=A0pa=C4=8Dek?= Date: Mon, 27 Feb 2023 16:02:50 +0100 Subject: [PATCH] Add proxy value to bin-compat validator (#11353) Fix #11352 --- src/Composer/Command/ConfigCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Composer/Command/ConfigCommand.php b/src/Composer/Command/ConfigCommand.php index 952baa815..d7f4ad78a 100644 --- a/src/Composer/Command/ConfigCommand.php +++ b/src/Composer/Command/ConfigCommand.php @@ -413,7 +413,7 @@ EOT ], 'bin-compat' => [ static function ($val): bool { - return in_array($val, ['auto', 'full', 'symlink']); + return in_array($val, ['auto', 'full', 'proxy', 'symlink']); }, static function ($val) { return $val;