Initial Drupal 11 with DDEV setup
This commit is contained in:
13
vendor/composer/installers/src/Composer/Installers/MagentoInstaller.php
vendored
Normal file
13
vendor/composer/installers/src/Composer/Installers/MagentoInstaller.php
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
<?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}/',
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user