File "ProcessWireInstaller.php"
Full Path: /home/jlklyejr/public_html/wp-content-20241030122153/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/ProcessWireInstaller.php
File size: 555 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Composer\Installers;
class ProcessWireInstaller extends BaseInstaller
{
protected $locations = array(
'module' => 'site/modules/{$name}/',
);
/**
* Format package name to CamelCase
*/
public function inflectPackageVars($vars)
{
$vars['name'] = strtolower(preg_replace('/(?<=\\w)([A-Z])/', '_\\1', $vars['name']));
$vars['name'] = str_replace(array('-', '_'), ' ', $vars['name']);
$vars['name'] = str_replace(' ', '', ucwords($vars['name']));
return $vars;
}
}