PATH:
home
/
lab2454c
/
keebchat.com
/
core
/
libs
/
s3
/
vendor
/
composer
/
installers
/
src
/
Composer
/
Installers
<?php namespace Composer\Installers; /** * Plugin/theme installer for shopware * @author Benjamin Boit */ class ShopwareInstaller extends BaseInstaller { 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}/', ); /** * Transforms the names * @param array $vars * @return array */ public function inflectPackageVars($vars) { if ($vars['type'] === 'shopware-theme') { return $this->correctThemeName($vars); } return $this->correctPluginName($vars); } /** * Changes the name to a camelcased combination of vendor and name * @param array $vars * @return array */ private function correctPluginName($vars) { $camelCasedName = preg_replace_callback('/(-[a-z])/', function ($matches) { return strtoupper($matches[0][1]); }, $vars['name']); $vars['name'] = ucfirst($vars['vendor']) . ucfirst($camelCasedName); return $vars; } /** * Changes the name to a underscore separated name * @param array $vars * @return array */ private function correctThemeName($vars) { $vars['name'] = str_replace('-', '_', $vars['name']); return $vars; } }
[-] SyDESInstaller.php
[edit]
[-] Concrete5Installer.php
[edit]
[-] LaravelInstaller.php
[edit]
[-] MakoInstaller.php
[edit]
[-] MayaInstaller.php
[edit]
[-] LavaLiteInstaller.php
[edit]
[-] KodiCMSInstaller.php
[edit]
[-] PortoInstaller.php
[edit]
[-] GravInstaller.php
[edit]
[-] Plugin.php
[edit]
[-] TheliaInstaller.php
[edit]
[-] PPIInstaller.php
[edit]
[-] CraftInstaller.php
[edit]
[-] JoomlaInstaller.php
[edit]
[-] CroogoInstaller.php
[edit]
[-] Redaxo5Installer.php
[edit]
[-] WordPressInstaller.php
[edit]
[-] ModxInstaller.php
[edit]
[-] ExpressionEngineInstaller.php
[edit]
[+]
..
[-] TYPO3FlowInstaller.php
[edit]
[-] PuppetInstaller.php
[edit]
[-] ItopInstaller.php
[edit]
[-] SiteDirectInstaller.php
[edit]
[-] EliasisInstaller.php
[edit]
[-] EzPlatformInstaller.php
[edit]
[-] PhpBBInstaller.php
[edit]
[-] PlentymarketsInstaller.php
[edit]
[-] MauticInstaller.php
[edit]
[-] AnnotateCmsInstaller.php
[edit]
[-] Symfony1Installer.php
[edit]
[-] AttogramInstaller.php
[edit]
[-] YawikInstaller.php
[edit]
[-] PrestashopInstaller.php
[edit]
[-] MajimaInstaller.php
[edit]
[-] FuelInstaller.php
[edit]
[-] MediaWikiInstaller.php
[edit]
[-] VgmcpInstaller.php
[edit]
[-] FuelphpInstaller.php
[edit]
[-] BaseInstaller.php
[edit]
[-] KnownInstaller.php
[edit]
[-] ClanCatsFrameworkInstaller.php
[edit]
[-] DframeInstaller.php
[edit]
[-] RoundcubeInstaller.php
[edit]
[-] CockpitInstaller.php
[edit]
[-] CiviCrmInstaller.php
[edit]
[-] MoodleInstaller.php
[edit]
[-] SilverStripeInstaller.php
[edit]
[-] AsgardInstaller.php
[edit]
[-] TaoInstaller.php
[edit]
[-] ReIndexInstaller.php
[edit]
[-] OsclassInstaller.php
[edit]
[-] MODULEWorkInstaller.php
[edit]
[-] AimeosInstaller.php
[edit]
[-] WolfCMSInstaller.php
[edit]
[-] RadPHPInstaller.php
[edit]
[-] OctoberInstaller.php
[edit]
[-] CakePHPInstaller.php
[edit]
[-] SMFInstaller.php
[edit]
[-] LithiumInstaller.php
[edit]
[-] OntoWikiInstaller.php
[edit]
[-] DecibelInstaller.php
[edit]
[-] DokuWikiInstaller.php
[edit]
[-] RedaxoInstaller.php
[edit]
[-] ChefInstaller.php
[edit]
[-] Installer.php
[edit]
[-] DolibarrInstaller.php
[edit]
[-] WHMCSInstaller.php
[edit]
[-] VanillaInstaller.php
[edit]
[-] KanboardInstaller.php
[edit]
[-] ZikulaInstaller.php
[edit]
[-] PxcmsInstaller.php
[edit]
[-] KohanaInstaller.php
[edit]
[-] CodeIgniterInstaller.php
[edit]
[-] PhiftyInstaller.php
[edit]
[-] MagentoInstaller.php
[edit]
[-] DrupalInstaller.php
[edit]
[-] PimcoreInstaller.php
[edit]
[-] BitrixInstaller.php
[edit]
[-] BonefishInstaller.php
[edit]
[-] LanManagementSystemInstaller.php
[edit]
[-] AglInstaller.php
[edit]
[-] PiwikInstaller.php
[edit]
[-] KirbyInstaller.php
[edit]
[-] ShopwareInstaller.php
[edit]
[-] MODXEvoInstaller.php
[edit]
[-] ZendInstaller.php
[edit]
[-] TYPO3CmsInstaller.php
[edit]
[-] UserFrostingInstaller.php
[edit]
[-] ImageCMSInstaller.php
[edit]
[-] OxidInstaller.php
[edit]
[-] HuradInstaller.php
[edit]
[-] MicroweberInstaller.php
[edit]
[-] TuskInstaller.php
[edit]
[-] ElggInstaller.php
[edit]