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