12 lines
210 B
PHP
12 lines
210 B
PHP
<?php
|
|
|
|
namespace Composer\Installers;
|
|
|
|
class LaravelInstaller extends BaseInstaller
|
|
{
|
|
/** @var array<string, string> */
|
|
protected $locations = array(
|
|
'library' => 'libraries/{$name}/',
|
|
);
|
|
}
|