Yaffs site version 1.1
[yaffs-website] / vendor / composer / installers / src / Composer / Installers / DrupalInstaller.php
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 }