class TYPO3FlowInstaller in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/composer/installers/src/Composer/Installers/TYPO3FlowInstaller.php \Composer\Installers\TYPO3FlowInstaller
An installer to handle TYPO3 Flow specifics when installing packages.
Hierarchy
- class \Composer\Installers\BaseInstaller
- class \Composer\Installers\TYPO3FlowInstaller
Expanded class hierarchy of TYPO3FlowInstaller
File
- vendor/
composer/ installers/ src/ Composer/ Installers/ TYPO3FlowInstaller.php, line 7
Namespace
Composer\InstallersView source
class TYPO3FlowInstaller extends BaseInstaller {
protected $locations = array(
'package' => 'Packages/Application/{$name}/',
'framework' => 'Packages/Framework/{$name}/',
'plugin' => 'Packages/Plugins/{$name}/',
'site' => 'Packages/Sites/{$name}/',
'boilerplate' => 'Packages/Boilerplates/{$name}/',
'build' => 'Build/{$name}/',
);
/**
* Modify the package name to be a TYPO3 Flow style key.
*
* @param array $vars
* @return array
*/
public function inflectPackageVars($vars) {
$autoload = $this->package
->getAutoload();
if (isset($autoload['psr-0']) && is_array($autoload['psr-0'])) {
$namespace = key($autoload['psr-0']);
$vars['name'] = str_replace('\\', '.', $namespace);
}
if (isset($autoload['psr-4']) && is_array($autoload['psr-4'])) {
$namespace = key($autoload['psr-4']);
$vars['name'] = rtrim(str_replace('\\', '.', $namespace), '.');
}
return $vars;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
BaseInstaller:: |
protected | property | ||
BaseInstaller:: |
protected | property | ||
BaseInstaller:: |
public | function | Return the install path based on package type. | 1 |
BaseInstaller:: |
public | function | Gets the installer's locations | 1 |
BaseInstaller:: |
protected | function | Search through a passed paths array for a custom install path. | |
BaseInstaller:: |
protected | function | Replace vars in a path | |
BaseInstaller:: |
public | function | Initializes base installer. | |
TYPO3FlowInstaller:: |
protected | property |
Overrides BaseInstaller:: |
|
TYPO3FlowInstaller:: |
public | function |
Modify the package name to be a TYPO3 Flow style key. Overrides BaseInstaller:: |