woocommerce-multilingual
/
vendor
/
composer
/
installers
/
src
/
Composer
/
Installers
/
RoundcubeInstaller.php
woocommerce-multilingual
/
vendor
/
composer
/
installers
/
src
/
Composer
/
Installers
Last commit date
AglInstaller.php
4 weeks ago
AimeosInstaller.php
5 years ago
AnnotateCmsInstaller.php
5 years ago
AsgardInstaller.php
4 weeks ago
AttogramInstaller.php
5 years ago
BaseInstaller.php
4 weeks ago
BitrixInstaller.php
4 weeks ago
BonefishInstaller.php
5 years ago
CakePHPInstaller.php
4 weeks ago
ChefInstaller.php
5 years ago
CiviCrmInstaller.php
5 years ago
ClanCatsFrameworkInstaller.php
5 years ago
CockpitInstaller.php
4 weeks ago
CodeIgniterInstaller.php
5 years ago
Concrete5Installer.php
5 years ago
CraftInstaller.php
4 weeks ago
CroogoInstaller.php
4 weeks ago
DecibelInstaller.php
4 weeks ago
DframeInstaller.php
5 years ago
DokuWikiInstaller.php
4 weeks ago
DolibarrInstaller.php
4 weeks ago
DrupalInstaller.php
5 years ago
ElggInstaller.php
5 years ago
EliasisInstaller.php
5 years ago
ExpressionEngineInstaller.php
5 years ago
EzPlatformInstaller.php
5 years ago
FuelInstaller.php
5 years ago
FuelphpInstaller.php
5 years ago
GravInstaller.php
4 weeks ago
HuradInstaller.php
4 weeks ago
ImageCMSInstaller.php
5 years ago
Installer.php
4 weeks ago
ItopInstaller.php
5 years ago
JoomlaInstaller.php
4 weeks ago
KanboardInstaller.php
4 weeks ago
KirbyInstaller.php
5 years ago
KnownInstaller.php
5 years ago
KodiCMSInstaller.php
5 years ago
KohanaInstaller.php
5 years ago
LanManagementSystemInstaller.php
4 weeks ago
LaravelInstaller.php
5 years ago
LavaLiteInstaller.php
5 years ago
LithiumInstaller.php
5 years ago
MODULEWorkInstaller.php
5 years ago
MODXEvoInstaller.php
4 weeks ago
MagentoInstaller.php
5 years ago
MajimaInstaller.php
4 weeks ago
MakoInstaller.php
5 years ago
MantisBTInstaller.php
4 weeks ago
MauticInstaller.php
4 weeks ago
MayaInstaller.php
4 weeks ago
MediaWikiInstaller.php
4 weeks ago
MiaoxingInstaller.php
4 years ago
MicroweberInstaller.php
4 weeks ago
ModxInstaller.php
4 weeks ago
MoodleInstaller.php
4 years ago
OctoberInstaller.php
4 weeks ago
OntoWikiInstaller.php
4 weeks ago
OsclassInstaller.php
5 years ago
OxidInstaller.php
4 weeks ago
PPIInstaller.php
5 years ago
PantheonInstaller.php
4 weeks ago
PhiftyInstaller.php
5 years ago
PhpBBInstaller.php
5 years ago
PimcoreInstaller.php
4 weeks ago
PiwikInstaller.php
4 weeks ago
PlentymarketsInstaller.php
4 weeks ago
Plugin.php
5 years ago
PortoInstaller.php
5 years ago
PrestashopInstaller.php
5 years ago
ProcessWireInstaller.php
4 weeks ago
PuppetInstaller.php
5 years ago
PxcmsInstaller.php
4 weeks ago
RadPHPInstaller.php
4 weeks ago
ReIndexInstaller.php
5 years ago
Redaxo5Installer.php
5 years ago
RedaxoInstaller.php
5 years ago
RoundcubeInstaller.php
4 weeks ago
SMFInstaller.php
5 years ago
ShopwareInstaller.php
4 weeks ago
SilverStripeInstaller.php
4 weeks ago
SiteDirectInstaller.php
5 years ago
StarbugInstaller.php
4 years ago
SyDESInstaller.php
4 weeks ago
SyliusInstaller.php
5 years ago
Symfony1Installer.php
4 weeks ago
TYPO3CmsInstaller.php
4 weeks ago
TYPO3FlowInstaller.php
4 weeks ago
TaoInstaller.php
4 weeks ago
TastyIgniterInstaller.php
4 weeks ago
TheliaInstaller.php
5 years ago
TuskInstaller.php
4 weeks ago
UserFrostingInstaller.php
5 years ago
VanillaInstaller.php
5 years ago
VgmcpInstaller.php
4 weeks ago
WHMCSInstaller.php
5 years ago
WinterInstaller.php
4 weeks ago
WolfCMSInstaller.php
5 years ago
WordPressInstaller.php
5 years ago
YawikInstaller.php
4 weeks ago
ZendInstaller.php
5 years ago
ZikulaInstaller.php
5 years ago
RoundcubeInstaller.php
17 lines
| 1 | <?php |
| 2 | namespace Composer\Installers; |
| 3 | |
| 4 | class RoundcubeInstaller extends BaseInstaller |
| 5 | { |
| 6 | protected $locations = array( |
| 7 | 'plugin' => 'plugins/{$name}/', |
| 8 | ); |
| 9 | |
| 10 | public function inflectPackageVars($vars) |
| 11 | { |
| 12 | $vars['name'] = strtolower(str_replace('-', '_', $vars['name'])); |
| 13 | |
| 14 | return $vars; |
| 15 | } |
| 16 | } |
| 17 |