Version 1
[yaffs-website] / vendor / composer / installers / src / Composer / Installers / VanillaInstaller.php
diff --git a/vendor/composer/installers/src/Composer/Installers/VanillaInstaller.php b/vendor/composer/installers/src/Composer/Installers/VanillaInstaller.php
new file mode 100644 (file)
index 0000000..24ca645
--- /dev/null
@@ -0,0 +1,10 @@
+<?php
+namespace Composer\Installers;
+
+class VanillaInstaller extends BaseInstaller
+{
+    protected $locations = array(
+        'plugin'    => 'plugins/{$name}/',
+        'theme'     => 'themes/{$name}/',
+    );
+}