| 1 |
<?php |
| 2 |
namespace Composer\Installers; |
| 3 |
|
| 4 |
class ImageCMSInstaller extends BaseInstaller |
| 5 |
{ |
| 6 |
protected $locations = array( |
| 7 |
'template' => 'templates/{$name}/', |
| 8 |
'module' => 'application/modules/{$name}/', |
| 9 |
'library' => 'application/libraries/{$name}/', |
| 10 |
); |
| 11 |
} |
| 12 |
|