We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 697ea58 + b4fd99e commit fda8fe5Copy full SHA for fda8fe5
README.md
@@ -53,6 +53,7 @@ is not needed to install packages with these frameworks:
53
| Dolibarr | `dolibarr-module`
54
| Drupal | <b>`drupal-core`<br>`drupal-module`<br>`drupal-theme`</b><br>`drupal-library`<br>`drupal-profile`<br>`drupal-drush`
55
| Elgg | `elgg-plugin`
56
+| Eliasis | `eliasis-module`
57
| ExpressionEngine 3 | `ee3-addon`<br>`ee3-theme`
58
| FuelPHP v1.x | `fuel-module`<br>`fuel-package`<br/>`fuel-theme`
59
| FuelPHP v2.x | `fuelphp-component`
composer.json
@@ -21,6 +21,7 @@
21
"Dolibarr",
22
"Drupal",
23
"Elgg",
24
+ "Eliasis",
25
"ExpressionEngine",
26
"FuelPHP",
27
"Grav",
src/Composer/Installers/EliasisInstaller.php
@@ -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
@@ -34,6 +34,7 @@ class Installer extends LibraryInstaller
34
'decibel' => 'DecibelInstaller',
35
'drupal' => 'DrupalInstaller',
36
'elgg' => 'ElggInstaller',
37
+ 'eliasis' => 'EliasisInstaller',
38
'ee3' => 'ExpressionEngineInstaller',
39
'ee2' => 'ExpressionEngineInstaller',
40
'fuel' => 'FuelInstaller',
tests/Composer/Installers/Test/InstallerTest.php
@@ -123,6 +123,7 @@ public function dataForTestSupport()
123
array('ee2-theme', true),
124
array('ee2-addon', true),
125
array('elgg-plugin', true),
126
+ array('eliasis-module', true),
127
array('fuel-module', true),
128
array('fuel-package', true),
129
array('fuel-theme', true),
@@ -266,6 +267,7 @@ public function dataForTestInstallPath()
266
267
array('drupal-profile', 'profiles/my_module/', 'shama/my_module'),
268
array('drupal-drush', 'drush/my_module/', 'shama/my_module'),
269
array('elgg-plugin', 'mod/sample_plugin/', 'test/sample_plugin'),
270
+ array('eliasis-module', 'modules/my_module/', 'shama/my_module'),
271
array('ee3-addon', 'system/user/addons/ee_theme/', 'author/ee_theme'),
272
array('ee3-theme', 'themes/user/ee_package/', 'author/ee_package'),
273
array('ee2-addon', 'system/expressionengine/third_party/ee_theme/', 'author/ee_theme'),
0 commit comments