| 1 |
<?php |
| 2 |
|
| 3 |
namespace Composer\Installers; |
| 4 |
|
| 5 |
class LithiumInstaller extends BaseInstaller |
| 6 |
{ |
| 7 |
/** @var array<string, string> */ |
| 8 |
protected $locations = array( |
| 9 |
'library' => 'libraries/{$name}/', |
| 10 |
'source' => 'libraries/_source/{$name}/', |
| 11 |
); |
| 12 |
} |
| 13 |
|