| 1 | <?php |
||
| 8 | class MajimaInstaller extends BaseInstaller |
||
| 9 | { |
||
| 10 | protected $locations = array( |
||
| 11 | 'plugin' => 'plugins/{$name}/', |
||
| 12 | ); |
||
| 13 | |||
| 14 | /** |
||
| 15 | * Transforms the names |
||
| 16 | * @param array $vars |
||
| 17 | * @return array |
||
| 18 | */ |
||
| 19 | public function inflectPackageVars($vars) |
||
| 23 | |||
| 24 | /** |
||
| 25 | * Change hyphenated names to camelcase |
||
| 26 | * @param array $vars |
||
| 27 | * @return array |
||
| 28 | */ |
||
| 29 | private function correctPluginName($vars) |
||
| 37 | } |
||
| 38 |