| 1 |
<?php |
| 2 |
namespace Composer\Installers; |
| 3 |
|
| 4 |
class MagentoInstaller extends BaseInstaller |
| 5 |
{ |
| 6 |
protected $locations = array( |
| 7 |
'theme' => 'app/design/frontend/{$name}/', |
| 8 |
'skin' => 'skin/frontend/default/{$name}/', |
| 9 |
'library' => 'lib/{$name}/', |
| 10 |
); |
| 11 |
} |
| 12 |
|