summaryrefslogtreecommitdiff
path: root/www/wiki/vendor/composer/installers/src/Composer/Installers/KnownInstaller.php
blob: c5d08c5f9a1b65aaf3d3859c5182398ff714dea5 (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php
namespace Composer\Installers;

class KnownInstaller extends BaseInstaller
{
    protected $locations = array(
        'plugin'    => 'IdnoPlugins/{$name}/',
        'theme'     => 'Themes/{$name}/',
        'console'   => 'ConsolePlugins/{$name}/',
    );
}