You are here

DrupalInstaller.php in Zircon Profile 8

File

vendor/composer/installers/src/Composer/Installers/DrupalInstaller.php
View source
<?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}/',
  );

}

Classes

Namesort descending Description
DrupalInstaller