summaryrefslogtreecommitdiff
path: root/www/wiki/vendor/composer/installers/src/Composer/Installers/DrupalInstaller.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/vendor/composer/installers/src/Composer/Installers/DrupalInstaller.php')
-rw-r--r--www/wiki/vendor/composer/installers/src/Composer/Installers/DrupalInstaller.php20
1 files changed, 12 insertions, 8 deletions
diff --git a/www/wiki/vendor/composer/installers/src/Composer/Installers/DrupalInstaller.php b/www/wiki/vendor/composer/installers/src/Composer/Installers/DrupalInstaller.php
index fef7c525..f520bfe2 100644
--- a/www/wiki/vendor/composer/installers/src/Composer/Installers/DrupalInstaller.php
+++ b/www/wiki/vendor/composer/installers/src/Composer/Installers/DrupalInstaller.php
@@ -4,13 +4,17 @@ namespace Composer\Installers;
class DrupalInstaller extends BaseInstaller
{
protected $locations = array(
- 'core' => 'core/',
- 'module' => 'modules/{$name}/',
- 'theme' => 'themes/{$name}/',
- 'library' => 'libraries/{$name}/',
- 'profile' => 'profiles/{$name}/',
- 'drush' => 'drush/{$name}/',
- 'custom-theme' => 'themes/custom/{$name}/',
- 'custom-module' => 'modules/custom/{$name}/',
+ 'core' => 'core/',
+ 'module' => 'modules/{$name}/',
+ 'theme' => 'themes/{$name}/',
+ 'library' => 'libraries/{$name}/',
+ 'profile' => 'profiles/{$name}/',
+ 'drush' => 'drush/{$name}/',
+ 'custom-theme' => 'themes/custom/{$name}/',
+ 'custom-module' => 'modules/custom/{$name}/',
+ 'custom-profile' => 'profiles/custom/{$name}/',
+ 'drupal-multisite' => 'sites/{$name}/',
+ 'console' => 'console/{$name}/',
+ 'console-language' => 'console/language/{$name}/',
);
}