Skip to content

Commit

Permalink
Add support for Drupal Console custom packages and languages (#311)
Browse files Browse the repository at this point in the history
* Update DrupalInstaller.php

* Added composer installer types for Drupal Console packages and languages

* Fix missing trailing comma
  • Loading branch information
enzolutions authored and alcohol committed May 15, 2019
1 parent 61958ce commit 4aa453a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Composer/Installers/DrupalInstaller.php
Original file line number Diff line number Diff line change
Expand Up @@ -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}/',
);
}

0 comments on commit 4aa453a

Please sign in to comment.