Format package name of mautic-plugins to CamelCase
Overrides BaseInstaller::inflectPackageVars
public function inflectPackageVars(array $vars) : array { if ($vars['type'] == 'mautic-plugin' || $vars['type'] == 'mautic-theme') { $directoryName = $this->getDirectoryName(); $vars['name'] = $directoryName; } return $vars; }