12 lines
309 B
PHP
12 lines
309 B
PHP
<?php
|
|
namespace Composer\Installers;
|
|
|
|
class CodeIgniterInstaller extends BaseInstaller
|
|
{
|
|
protected $locations = array(
|
|
'library' => 'application/libraries/{$name}/',
|
|
'third-party' => 'application/third_party/{$name}/',
|
|
'module' => 'application/modules/{$name}/',
|
|
);
|
|
}
|