You are here

JoomlaInstaller.php in Zircon Profile 8

File

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

}

Classes

Namesort descending Description
JoomlaInstaller