From 4aa453ad54f76c4db02b6ad3574e17795c51fb23 Mon Sep 17 00:00:00 2001 From: enzo - Eduardo Garcia Date: Wed, 15 May 2019 16:46:42 +1000 Subject: [PATCH] Add support for Drupal Console custom packages and languages (#311) * Update DrupalInstaller.php * Added composer installer types for Drupal Console packages and languages * Fix missing trailing comma --- src/Composer/Installers/DrupalInstaller.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Composer/Installers/DrupalInstaller.php b/src/Composer/Installers/DrupalInstaller.php index 39735c1e..f520bfe2 100644 --- a/src/Composer/Installers/DrupalInstaller.php +++ b/src/Composer/Installers/DrupalInstaller.php @@ -13,6 +13,8 @@ class DrupalInstaller extends BaseInstaller 'custom-theme' => 'themes/custom/{$name}/', 'custom-module' => 'modules/custom/{$name}/', 'custom-profile' => 'profiles/custom/{$name}/', - 'drupal-multisite' => 'sites/{$name}/' + 'drupal-multisite' => 'sites/{$name}/', + 'console' => 'console/{$name}/', + 'console-language' => 'console/language/{$name}/', ); }