Initial Drupal 11 with DDEV setup
This commit is contained in:
13
vendor/composer/installers/src/Composer/Installers/FuelInstaller.php
vendored
Normal file
13
vendor/composer/installers/src/Composer/Installers/FuelInstaller.php
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace Composer\Installers;
|
||||
|
||||
class FuelInstaller extends BaseInstaller
|
||||
{
|
||||
/** @var array<string, string> */
|
||||
protected $locations = array(
|
||||
'module' => 'fuel/app/modules/{$name}/',
|
||||
'package' => 'fuel/packages/{$name}/',
|
||||
'theme' => 'fuel/app/themes/{$name}/',
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user