Skip to content

Commit fda8fe5

Browse files
Merge pull request #349 from Eliasis-Framework/master
Module type for Eliasis Framework were added
2 parents 697ea58 + b4fd99e commit fda8fe5

File tree

5 files changed

+14
-0
lines changed

5 files changed

+14
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ is not needed to install packages with these frameworks:
5353
| Dolibarr | `dolibarr-module`
5454
| Drupal | <b>`drupal-core`<br>`drupal-module`<br>`drupal-theme`</b><br>`drupal-library`<br>`drupal-profile`<br>`drupal-drush`
5555
| Elgg | `elgg-plugin`
56+
| Eliasis | `eliasis-module`
5657
| ExpressionEngine 3 | `ee3-addon`<br>`ee3-theme`
5758
| FuelPHP v1.x | `fuel-module`<br>`fuel-package`<br/>`fuel-theme`
5859
| FuelPHP v2.x | `fuelphp-component`

composer.json

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
"Dolibarr",
2222
"Drupal",
2323
"Elgg",
24+
"Eliasis",
2425
"ExpressionEngine",
2526
"FuelPHP",
2627
"Grav",
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?php
2+
namespace Composer\Installers;
3+
4+
class EliasisInstaller extends BaseInstaller
5+
{
6+
protected $locations = array(
7+
'module' => 'modules/{$name}/'
8+
);
9+
}

src/Composer/Installers/Installer.php

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ class Installer extends LibraryInstaller
3434
'decibel' => 'DecibelInstaller',
3535
'drupal' => 'DrupalInstaller',
3636
'elgg' => 'ElggInstaller',
37+
'eliasis' => 'EliasisInstaller',
3738
'ee3' => 'ExpressionEngineInstaller',
3839
'ee2' => 'ExpressionEngineInstaller',
3940
'fuel' => 'FuelInstaller',

tests/Composer/Installers/Test/InstallerTest.php

+2
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@ public function dataForTestSupport()
123123
array('ee2-theme', true),
124124
array('ee2-addon', true),
125125
array('elgg-plugin', true),
126+
array('eliasis-module', true),
126127
array('fuel-module', true),
127128
array('fuel-package', true),
128129
array('fuel-theme', true),
@@ -266,6 +267,7 @@ public function dataForTestInstallPath()
266267
array('drupal-profile', 'profiles/my_module/', 'shama/my_module'),
267268
array('drupal-drush', 'drush/my_module/', 'shama/my_module'),
268269
array('elgg-plugin', 'mod/sample_plugin/', 'test/sample_plugin'),
270+
array('eliasis-module', 'modules/my_module/', 'shama/my_module'),
269271
array('ee3-addon', 'system/user/addons/ee_theme/', 'author/ee_theme'),
270272
array('ee3-theme', 'themes/user/ee_package/', 'author/ee_package'),
271273
array('ee2-addon', 'system/expressionengine/third_party/ee_theme/', 'author/ee_theme'),

0 commit comments

Comments
 (0)