annotate vendor/composer/installers/src/Composer/Installers/TYPO3CmsInstaller.php @ 0:4c8ae668cc8c

Initial import (non-working)
author Chris Cannam
date Wed, 29 Nov 2017 16:09:58 +0000
parents
children
rev   line source
Chris@0 1 <?php
Chris@0 2 namespace Composer\Installers;
Chris@0 3
Chris@0 4 /**
Chris@0 5 * Extension installer for TYPO3 CMS
Chris@0 6 *
Chris@0 7 * @deprecated since 1.0.25, use https://packagist.org/packages/typo3/cms-composer-installers instead
Chris@0 8 *
Chris@0 9 * @author Sascha Egerer <sascha.egerer@dkd.de>
Chris@0 10 */
Chris@0 11 class TYPO3CmsInstaller extends BaseInstaller
Chris@0 12 {
Chris@0 13 protected $locations = array(
Chris@0 14 'extension' => 'typo3conf/ext/{$name}/',
Chris@0 15 );
Chris@0 16 }