File "RadPHPInstaller.php"

Full Path: /home/vantageo/public_html/wp-admin/.wp-cli/wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/RadPHPInstaller.php
File size: 659 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace Composer\Installers;

class RadPHPInstaller extends BaseInstaller
{
    protected $locations = array(
        'bundle' => 'src/{$name}/'
    );

    /**
     * Format package name to CamelCase
     */
    public function inflectPackageVars($vars)
    {
        $nameParts = explode('/', $vars['name']);
        foreach ($nameParts as &$value) {
            $value = strtolower(preg_replace('/(?<=\\w)([A-Z])/', '_\\1', $value));
            $value = str_replace(array('-', '_'), ' ', $value);
            $value = str_replace(' ', '', ucwords($value));
        }
        $vars['name'] = implode('/', $nameParts);
        return $vars;
    }
}