Skip to content

Commit 99e6aa7

Browse files
Merge pull request #262 from dedalozzo/master
added the ReIndex framework
2 parents 1c0cdf3 + e34102e commit 99e6aa7

File tree

5 files changed

+19
-2
lines changed

5 files changed

+19
-2
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ is not needed to install packages with these frameworks:
8181
| Puppet | `puppet-module`
8282
| RadPHP | `radphp-bundle`
8383
| REDAXO | `redaxo-addon`
84+
| ReIndex | **`reindex-plugin`** <br> **`reindex-theme`**
8485
| Roundcube | `roundcube-plugin`
8586
| shopware | `shopware-backend-plugin`<br/>`shopware-core-plugin`<br/>`shopware-frontend-plugin`<br/>`shopware-theme`
8687
| SilverStripe | `silverstripe-module`<br>`silverstripe-theme`

composer.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
"PPI",
4444
"Puppet",
4545
"RadPHP",
46+
"ReIndex",
4647
"Roundcube",
4748
"shopware",
4849
"SilverStripe",
@@ -86,4 +87,4 @@
8687
"scripts": {
8788
"test": "phpunit"
8889
}
89-
}
90+
}

src/Composer/Installers/Installer.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class Installer extends LibraryInstaller
5151
'mako' => 'MakoInstaller',
5252
'mautic' => 'MauticInstaller',
5353
'mediawiki' => 'MediaWikiInstaller',
54-
'microweber' => 'MicroweberInstaller',
54+
'microweber' => 'MicroweberInstaller',
5555
'modulework' => 'MODULEWorkInstaller',
5656
'modxevo' => 'MODXEvoInstaller',
5757
'moodle' => 'MoodleInstaller',
@@ -65,6 +65,7 @@ class Installer extends LibraryInstaller
6565
'radphp' => 'RadPHPInstaller',
6666
'phifty' => 'PhiftyInstaller',
6767
'redaxo' => 'RedaxoInstaller',
68+
'reindex' => 'ReIndexInstaller',
6869
'roundcube' => 'RoundcubeInstaller',
6970
'shopware' => 'ShopwareInstaller',
7071
'silverstripe' => 'SilverStripeInstaller',
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?php
2+
namespace Composer\Installers;
3+
4+
class ReIndexInstaller extends BaseInstaller
5+
{
6+
protected $locations = array(
7+
'theme' => 'themes/{$name}/',
8+
'plugin' => 'plugins/{$name}/'
9+
);
10+
}

tests/Composer/Installers/Test/InstallerTest.php

+4
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,8 @@ public function dataForTestSupport()
160160
array('radphp-bundle', true),
161161
array('redaxo-addon', true),
162162
array('redaxo-bestyle-plugin', true),
163+
array('reindex-theme', true),
164+
array('reindex-plugin', true),
163165
array('roundcube-plugin', true),
164166
array('shopware-backend-plugin', true),
165167
array('shopware-core-plugin', true),
@@ -298,6 +300,8 @@ public function dataForTestInstallPath()
298300
array('radphp-bundle', 'src/Migration/', 'atkrad/migration'),
299301
array('redaxo-addon', 'redaxo/include/addons/my_plugin/', 'shama/my_plugin'),
300302
array('redaxo-bestyle-plugin', 'redaxo/include/addons/be_style/plugins/my_plugin/', 'shama/my_plugin'),
303+
array('reindex-theme', 'themes/my_module/', 'author/my_module'),
304+
array('reindex-plugin', 'plugins/my_module/', 'author/my_module'),
301305
array('roundcube-plugin', 'plugins/base/', 'test/base'),
302306
array('roundcube-plugin', 'plugins/replace_dash/', 'test/replace-dash'),
303307
array('shopware-backend-plugin', 'engine/Shopware/Plugins/Local/Backend/ShamaMyBackendPlugin/', 'shama/my-backend-plugin'),

0 commit comments

Comments
 (0)