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