We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b2b188 commit 61aaa66Copy full SHA for 61aaa66
README.md
@@ -77,6 +77,7 @@ is not needed to install packages with these frameworks:
77
| Magento | `magento-library`<br>`magento-skin`<br>`magento-theme`
78
| majima | `majima-plugin`
79
| Mako | `mako-package`
80
+| MantisBT | `mantisbt-plugin`
81
| Mautic | `mautic-plugin`<br>`mautic-theme`
82
| Maya | `maya-module`
83
| MODX | `modx-extra`
composer.json
@@ -40,6 +40,7 @@
40
"Magento",
41
"majima",
42
"Mako",
43
+ "MantisBT",
44
"Mautic",
45
"Maya",
46
"MODX",
src/Composer/Installers/Installer.php
@@ -63,6 +63,7 @@ class Installer extends LibraryInstaller
63
'lithium' => 'LithiumInstaller',
64
'magento' => 'MagentoInstaller',
65
'majima' => 'MajimaInstaller',
66
+ 'mantisbt' => 'MantisBTInstaller',
67
'mako' => 'MakoInstaller',
68
'maya' => 'MayaInstaller',
69
'mautic' => 'MauticInstaller',
src/Composer/Installers/MantisBTInstaller.php
@@ -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
@@ -170,6 +170,7 @@ public function dataForTestSupport()
170
array('magento-library', true),
171
array('majima-plugin', true),
172
array('mako-package', true),
173
+ array('mantisbt-plugin', true),
174
array('modx-extra', true),
175
array('modxevo-snippet', true),
176
array('modxevo-plugin', true),
@@ -367,6 +368,7 @@ public function dataForTestInstallPath()
367
368
array('modxevo-template', 'assets/templates/my_template/', 'shama/my_template'),
369
array('modxevo-lib', 'assets/lib/my_lib/', 'shama/my_lib'),
370
array('mako-package', 'app/packages/my_package/', 'shama/my_package'),
371
+ array('mantisbt-plugin', 'plugins/MyPlugin/', 'shama/my_plugin'),
372
array('mediawiki-extension', 'extensions/APC/', 'author/APC'),
373
array('mediawiki-extension', 'extensions/APC/', 'author/APC-extension'),
374
array('mediawiki-extension', 'extensions/UploadWizard/', 'author/upload-wizard'),
0 commit comments