Concrete5Installer.php 305 B

123456789101112
  1. <?php
  2. namespace Composer\Installers;
  3. class Concrete5Installer extends BaseInstaller
  4. {
  5. protected $locations = array(
  6. 'block' => 'blocks/{$name}/',
  7. 'package' => 'packages/{$name}/',
  8. 'theme' => 'themes/{$name}/',
  9. 'update' => 'updates/{$name}/',
  10. );
  11. }