Files
drupal11-ddev/vendor/composer/installers/src/Composer/Installers/MagentoInstaller.php

14 lines
312 B
PHP
Raw Normal View History

2025-10-08 11:39:17 -04:00
<?php
namespace Composer\Installers;
class MagentoInstaller extends BaseInstaller
{
/** @var array<string, string> */
protected $locations = array(
'theme' => 'app/design/frontend/{$name}/',
'skin' => 'skin/frontend/default/{$name}/',
'library' => 'lib/{$name}/',
);
}