Blame view

vendor/composer/installers/src/Composer/Installers/JoomlaInstaller.php 416 Bytes
70f4f18b   Administrator   first_commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  <?php
  namespace Composer\Installers;
  
  class JoomlaInstaller extends BaseInstaller
  {
      protected $locations = array(
          'component'    => 'components/{$name}/',
          'module'       => 'modules/{$name}/',
          'template'     => 'templates/{$name}/',
          'plugin'       => 'plugins/{$name}/',
          'library'      => 'libraries/{$name}/',
      );
  
      // TODO: Add inflector for mod_ and com_ names
  }