Skip to content

Commit 697ea58

Browse files
Merge pull request #346 from LavaLite/master
Installer for LavaLite.
2 parents 08ab3ea + 27e1dbd commit 697ea58

File tree

6 files changed

+18
-0
lines changed

6 files changed

+18
-0
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Change Log
22

33
## [Unreleased]
4+
* Installer for Lavalite.
45

56
## v1.2.0 - 2016-08-13
67
### Added

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ is not needed to install packages with these frameworks:
6666
| KodiCMS | `kodicms-plugin`<br>`kodicms-media`
6767
| Kohana | **`kohana-module`**
6868
| Laravel | `laravel-library`
69+
| Lavalite | `lavalite-theme`<br>`lavalite-package`
6970
| Lithium | **`lithium-library`<br>`lithium-source`**
7071
| Magento | `magento-library`<br>`magento-skin`<br>`magento-theme`
7172
| Mako | `mako-package`

composer.json

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
"Kanboard",
3232
"Kohana",
3333
"Laravel",
34+
"Lavalite",
3435
"Lithium",
3536
"Magento",
3637
"Mako",

src/Composer/Installers/Installer.php

+1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ class Installer extends LibraryInstaller
4848
'kodicms' => 'KodiCMSInstaller',
4949
'kohana' => 'KohanaInstaller',
5050
'laravel' => 'LaravelInstaller',
51+
'lavalite' => 'LavaLiteInstaller',
5152
'lithium' => 'LithiumInstaller',
5253
'magento' => 'MagentoInstaller',
5354
'mako' => 'MakoInstaller',
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?php
2+
namespace Composer\Installers;
3+
4+
class LavaLiteInstaller extends BaseInstaller
5+
{
6+
protected $locations = array(
7+
'package' => 'packages/{$name}/',
8+
'theme' => 'public/themes/{$name}/',
9+
);
10+
}

tests/Composer/Installers/Test/InstallerTest.php

+4
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,8 @@ public function dataForTestSupport()
138138
array('kirby-plugin', true),
139139
array('kohana-module', true),
140140
array('laravel-library', true),
141+
array('lavalite-theme', true),
142+
array('lavalite-package', true),
141143
array('lithium-library', true),
142144
array('magento-library', true),
143145
array('mako-package', true),
@@ -283,6 +285,8 @@ public function dataForTestInstallPath()
283285
array('kirby-plugin', 'site/plugins/my_plugin/', 'shama/my_plugin'),
284286
array('kohana-module', 'modules/my_package/', 'shama/my_package'),
285287
array('laravel-library', 'libraries/my_package/', 'shama/my_package'),
288+
array('lavalite-theme', 'public/themes/my_theme/', 'shama/my_theme'),
289+
array('lavalite-package', 'packages/my_package/', 'shama/my_package'),
286290
array('lithium-library', 'libraries/li3_test/', 'user/li3_test'),
287291
array('magento-library', 'lib/foo/', 'test/foo'),
288292
array('modxevo-snippet', 'assets/snippets/my_snippet/', 'shama/my_snippet'),

0 commit comments

Comments
 (0)