summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'UserFunctions/vendor/composer/installers/src/Composer/Installers/DrupalInstaller.php')
-rw-r--r--UserFunctions/vendor/composer/installers/src/Composer/Installers/DrupalInstaller.php16
1 files changed, 0 insertions, 16 deletions
diff --git a/UserFunctions/vendor/composer/installers/src/Composer/Installers/DrupalInstaller.php b/UserFunctions/vendor/composer/installers/src/Composer/Installers/DrupalInstaller.php
deleted file mode 100644
index a41ee2e1..00000000
--- a/UserFunctions/vendor/composer/installers/src/Composer/Installers/DrupalInstaller.php
+++ /dev/null
@@ -1,16 +0,0 @@
-<?php
-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}',
- );
-}