diff --git a/README.md b/README.md index c16dd4b7..ef6e44ed 100644 --- a/README.md +++ b/README.md @@ -109,7 +109,7 @@ all vendor code in the vendor directory, and not requiring custom installer code | REDAXO V5.* bestyle-plugin | `redaxo5-bestyle-plugin` | ReIndex | **`reindex-plugin`**
**`reindex-theme`** | Roundcube | `roundcube-plugin` -| shopware | `shopware-backend-plugin`
`shopware-core-plugin`
`shopware-frontend-plugin`
`shopware-theme`
`shopware-plugin`
`shopware-frontend-theme` +| shopware | `shopware-backend-plugin`
`shopware-core-plugin`
`shopware-frontend-plugin`
`shopware-theme`
`shopware-plugin`
`shopware-frontend-theme`
`shopware-platform-plugin` | SilverStripe | `silverstripe-module`
`silverstripe-theme` | SiteDirect | `sitedirect-module`
`sitedirect-plugin` | SMF | `smf-module`
`smf-theme` diff --git a/src/Composer/Installers/ShopwareInstaller.php b/src/Composer/Installers/ShopwareInstaller.php index 82b8e28c..8e708f66 100644 --- a/src/Composer/Installers/ShopwareInstaller.php +++ b/src/Composer/Installers/ShopwareInstaller.php @@ -10,12 +10,13 @@ class ShopwareInstaller extends BaseInstaller { /** @var array */ protected $locations = array( - 'backend-plugin' => 'engine/Shopware/Plugins/Local/Backend/{$name}/', - 'core-plugin' => 'engine/Shopware/Plugins/Local/Core/{$name}/', - 'frontend-plugin' => 'engine/Shopware/Plugins/Local/Frontend/{$name}/', - 'theme' => 'templates/{$name}/', - 'plugin' => 'custom/plugins/{$name}/', - 'frontend-theme' => 'themes/Frontend/{$name}/', + 'backend-plugin' => 'engine/Shopware/Plugins/Local/Backend/{$name}/', + 'core-plugin' => 'engine/Shopware/Plugins/Local/Core/{$name}/', + 'frontend-plugin' => 'engine/Shopware/Plugins/Local/Frontend/{$name}/', + 'theme' => 'templates/{$name}/', + 'plugin' => 'custom/plugins/{$name}/', + 'frontend-theme' => 'themes/Frontend/{$name}/', + 'shopware-platform-plugin' => 'custom/plugins/{$name}/', ); /**