Skip to content

Commit 61aaa66

Browse files
grv87niksamokhvalov
authored andcommitted
Added support for MantisBT plugins (#442)
1 parent 8b2b188 commit 61aaa66

File tree

5 files changed

+28
-0
lines changed

5 files changed

+28
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ is not needed to install packages with these frameworks:
7777
| Magento | `magento-library`<br>`magento-skin`<br>`magento-theme`
7878
| majima | `majima-plugin`
7979
| Mako | `mako-package`
80+
| MantisBT | `mantisbt-plugin`
8081
| Mautic | `mautic-plugin`<br>`mautic-theme`
8182
| Maya | `maya-module`
8283
| MODX | `modx-extra`

composer.json

+1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
"Magento",
4141
"majima",
4242
"Mako",
43+
"MantisBT",
4344
"Mautic",
4445
"Maya",
4546
"MODX",

src/Composer/Installers/Installer.php

+1
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ class Installer extends LibraryInstaller
6363
'lithium' => 'LithiumInstaller',
6464
'magento' => 'MagentoInstaller',
6565
'majima' => 'MajimaInstaller',
66+
'mantisbt' => 'MantisBTInstaller',
6667
'mako' => 'MakoInstaller',
6768
'maya' => 'MayaInstaller',
6869
'mautic' => 'MauticInstaller',
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?php
2+
namespace Composer\Installers;
3+
4+
use Composer\DependencyResolver\Pool;
5+
6+
class MantisBTInstaller extends BaseInstaller
7+
{
8+
protected $locations = array(
9+
'plugin' => 'plugins/{$name}/',
10+
);
11+
12+
/**
13+
* Format package name to CamelCase
14+
*/
15+
public function inflectPackageVars($vars)
16+
{
17+
$vars['name'] = strtolower(preg_replace('/(?<=\\w)([A-Z])/', '_\\1', $vars['name']));
18+
$vars['name'] = str_replace(array('-', '_'), ' ', $vars['name']);
19+
$vars['name'] = str_replace(' ', '', ucwords($vars['name']));
20+
21+
return $vars;
22+
}
23+
}

tests/Composer/Installers/Test/InstallerTest.php

+2
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,7 @@ public function dataForTestSupport()
170170
array('magento-library', true),
171171
array('majima-plugin', true),
172172
array('mako-package', true),
173+
array('mantisbt-plugin', true),
173174
array('modx-extra', true),
174175
array('modxevo-snippet', true),
175176
array('modxevo-plugin', true),
@@ -367,6 +368,7 @@ public function dataForTestInstallPath()
367368
array('modxevo-template', 'assets/templates/my_template/', 'shama/my_template'),
368369
array('modxevo-lib', 'assets/lib/my_lib/', 'shama/my_lib'),
369370
array('mako-package', 'app/packages/my_package/', 'shama/my_package'),
371+
array('mantisbt-plugin', 'plugins/MyPlugin/', 'shama/my_plugin'),
370372
array('mediawiki-extension', 'extensions/APC/', 'author/APC'),
371373
array('mediawiki-extension', 'extensions/APC/', 'author/APC-extension'),
372374
array('mediawiki-extension', 'extensions/UploadWizard/', 'author/upload-wizard'),

0 commit comments

Comments
 (0)