summaryrefslogtreecommitdiff
path: root/www/wiki/vendor/composer/installers/src/Composer/Installers/KnownInstaller.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/vendor/composer/installers/src/Composer/Installers/KnownInstaller.php')
-rw-r--r--www/wiki/vendor/composer/installers/src/Composer/Installers/KnownInstaller.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/www/wiki/vendor/composer/installers/src/Composer/Installers/KnownInstaller.php b/www/wiki/vendor/composer/installers/src/Composer/Installers/KnownInstaller.php
new file mode 100644
index 00000000..c5d08c5f
--- /dev/null
+++ b/www/wiki/vendor/composer/installers/src/Composer/Installers/KnownInstaller.php
@@ -0,0 +1,11 @@
+<?php
+namespace Composer\Installers;
+
+class KnownInstaller extends BaseInstaller
+{
+ protected $locations = array(
+ 'plugin' => 'IdnoPlugins/{$name}/',
+ 'theme' => 'Themes/{$name}/',
+ 'console' => 'ConsolePlugins/{$name}/',
+ );
+}