Mercurial > hg > isophonics-drupal-site
comparison vendor/composer/installers/src/Composer/Installers/MODXEvoInstaller.php @ 0:4c8ae668cc8c
Initial import (non-working)
author | Chris Cannam |
---|---|
date | Wed, 29 Nov 2017 16:09:58 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:4c8ae668cc8c |
---|---|
1 <?php | |
2 namespace Composer\Installers; | |
3 | |
4 /** | |
5 * An installer to handle MODX Evolution specifics when installing packages. | |
6 */ | |
7 class MODXEvoInstaller extends BaseInstaller | |
8 { | |
9 protected $locations = array( | |
10 'snippet' => 'assets/snippets/{$name}/', | |
11 'plugin' => 'assets/plugins/{$name}/', | |
12 'module' => 'assets/modules/{$name}/', | |
13 'template' => 'assets/templates/{$name}/', | |
14 'lib' => 'assets/lib/{$name}/' | |
15 ); | |
16 } |