You are here

CodeIgniterInstaller.php in Zircon Profile 8

File

vendor/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php
View source
<?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}/',
  );

}

Classes