# code-snippets/3.10.1/vendor/composer/installers/src/Composer/Installers/GravInstaller.php

Code Snippets, version 3.10.1. 30 lines.

- Page: https://pluginprobe.com/plugins/code-snippets/3.10.1/code/vendor/composer/installers/src/Composer/Installers/GravInstaller.php
- Raw: https://pluginprobe.com/plugins/code-snippets/3.10.1/raw/vendor/composer/installers/src/Composer/Installers/GravInstaller.php
- Modified: 2025-02-14T05:52:22+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.10.1/code/vendor/composer/installers/src/Composer/Installers/GravInstaller.php#L10-L20`.

```php
<?php

namespace Composer\Installers;

class GravInstaller extends BaseInstaller
{
    /** @var array<string, string> */
    protected $locations = array(
        'plugin' => 'user/plugins/{$name}/',
        'theme'  => 'user/themes/{$name}/',
    );

    /**
     * Format package name
     */
    public function inflectPackageVars(array $vars): array
    {
        $restrictedWords = implode('|', array_keys($this->locations));

        $vars['name'] = strtolower($vars['name']);
        $vars['name'] = $this->pregReplace(
            '/^(?:grav-)?(?:(?:'.$restrictedWords.')-)?(.*?)(?:-(?:'.$restrictedWords.'))?$/ui',
            '$1',
            $vars['name']
        );

        return $vars;
    }
}

```
