13 lines
305 B
PHP
13 lines
305 B
PHP
<?php
|
|
namespace Composer\Installers;
|
|
|
|
class StarbugInstaller extends BaseInstaller
|
|
{
|
|
protected $locations = array(
|
|
'module' => 'modules/{$name}/',
|
|
'theme' => 'themes/{$name}/',
|
|
'custom-module' => 'app/modules/{$name}/',
|
|
'custom-theme' => 'app/themes/{$name}/'
|
|
);
|
|
}
|