Mercurial > hg > isophonics-drupal-site
comparison vendor/composer/installers/src/Composer/Installers/DrupalInstaller.php @ 0:4c8ae668cc8c
Initial import (non-working)
author | Chris Cannam |
---|---|
date | Wed, 29 Nov 2017 16:09:58 +0000 |
parents | |
children | 129ea1e6d783 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:4c8ae668cc8c |
---|---|
1 <?php | |
2 namespace Composer\Installers; | |
3 | |
4 class DrupalInstaller extends BaseInstaller | |
5 { | |
6 protected $locations = array( | |
7 'core' => 'core/', | |
8 'module' => 'modules/{$name}/', | |
9 'theme' => 'themes/{$name}/', | |
10 'library' => 'libraries/{$name}/', | |
11 'profile' => 'profiles/{$name}/', | |
12 'drush' => 'drush/{$name}/', | |
13 'custom-theme' => 'themes/custom/{$name}/', | |
14 'custom-module' => 'modules/custom/{$name}', | |
15 ); | |
16 } |