| 1 |
<?php |
| 2 |
namespace Composer\Installers; |
| 3 |
|
| 4 |
class StarbugInstaller extends BaseInstaller |
| 5 |
{ |
| 6 |
protected $locations = array( |
| 7 |
'module' => 'modules/{$name}/', |
| 8 |
'theme' => 'themes/{$name}/', |
| 9 |
'custom-module' => 'app/modules/{$name}/', |
| 10 |
'custom-theme' => 'app/themes/{$name}/' |
| 11 |
); |
| 12 |
} |
| 13 |
|