# code-snippets/3.0.0/vendor/composer/installers/src/Composer/Installers/SiteDirectInstaller.php

Code Snippets, version 3.0.0. 26 lines.

- Page: https://pluginprobe.com/plugins/code-snippets/3.0.0/code/vendor/composer/installers/src/Composer/Installers/SiteDirectInstaller.php
- Raw: https://pluginprobe.com/plugins/code-snippets/3.0.0/raw/vendor/composer/installers/src/Composer/Installers/SiteDirectInstaller.php
- Modified: 2022-05-13T18:03:36+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/code-snippets/3.0.0/code/vendor/composer/installers/src/Composer/Installers/SiteDirectInstaller.php#L10-L20`.

```php
<?php

namespace Composer\Installers;

class SiteDirectInstaller extends BaseInstaller
{
    protected $locations = array(
        'module' => 'modules/{$vendor}/{$name}/',
        'plugin' => 'plugins/{$vendor}/{$name}/'
    );

    public function inflectPackageVars($vars)
    {
        return $this->parseVars($vars);
    }

    protected function parseVars($vars)
    {
        $vars['vendor'] = strtolower($vars['vendor']) == 'sitedirect' ? 'SiteDirect' : $vars['vendor'];
        $vars['name'] = str_replace(array('-', '_'), ' ', $vars['name']);
        $vars['name'] = str_replace(' ', '', ucwords($vars['name']));

        return $vars;
    }
}

```
