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