Blame view

vendor/composer/installers/src/Composer/Installers/DrupalInstaller.php 374 Bytes
0084d336   Administrator   Importers CRUD
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  <?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}/',
      );
  }