summaryrefslogtreecommitdiff
path: root/www/wiki/vendor/composer/installers/src/Composer/Installers/DrupalInstaller.php
blob: fef7c525dcaee2bcdc5135f713cc21b6f1ba30ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?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}/',
    );
}