Blame view

vendor/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php 309 Bytes
70f4f18b   Administrator   first_commit
1
2
3
4
5
6
7
8
9
10
11
  <?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}/',
      );
  }