| 1 |
<?php |
| 2 |
|
| 3 |
namespace Composer\Installers; |
| 4 |
|
| 5 |
class KnownInstaller extends BaseInstaller |
| 6 |
{ |
| 7 |
/** @var array<string, string> */ |
| 8 |
protected $locations = array( |
| 9 |
'plugin' => 'IdnoPlugins/{$name}/', |
| 10 |
'theme' => 'Themes/{$name}/', |
| 11 |
'console' => 'ConsolePlugins/{$name}/', |
| 12 |
); |
| 13 |
} |
| 14 |
|