You are here

public function BaseInstaller::inflectPackageVars in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/composer/installers/src/Composer/Installers/BaseInstaller.php \Composer\Installers\BaseInstaller::inflectPackageVars()

For an installer to override to modify the vars per installer.

Parameters

array $vars:

Return value

array

1 call to BaseInstaller::inflectPackageVars()
BaseInstaller::getInstallPath in vendor/composer/installers/src/Composer/Installers/BaseInstaller.php
Return the install path based on package type.
16 methods override BaseInstaller::inflectPackageVars()
AglInstaller::inflectPackageVars in vendor/composer/installers/src/Composer/Installers/AglInstaller.php
Format package name to CamelCase
AsgardInstaller::inflectPackageVars in vendor/composer/installers/src/Composer/Installers/AsgardInstaller.php
Format package name.
CakePHPInstaller::inflectPackageVars in vendor/composer/installers/src/Composer/Installers/CakePHPInstaller.php
Format package name to CamelCase
CroogoInstaller::inflectPackageVars in vendor/composer/installers/src/Composer/Installers/CroogoInstaller.php
Format package name to CamelCase
DokuWikiInstaller::inflectPackageVars in vendor/composer/installers/src/Composer/Installers/DokuWikiInstaller.php
Format package name.

... See full list

File

vendor/composer/installers/src/Composer/Installers/BaseInstaller.php, line 76

Class

BaseInstaller

Namespace

Composer\Installers

Code

public function inflectPackageVars($vars) {
  return $vars;
}