We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99e6aa7 commit 5c3e203Copy full SHA for 5c3e203
README.md
@@ -77,6 +77,7 @@ is not needed to install packages with these frameworks:
77
| Piwik | `piwik-plugin`
78
| phpBB | `phpbb-extension`<br>`phpbb-style`<br>`phpbb-language`
79
| Pimcore | `pimcore-plugin`
80
+| Plentymarkets | `plentymarkets-plugin`
81
| PPI | **`ppi-module`**
82
| Puppet | `puppet-module`
83
| RadPHP | `radphp-bundle`
composer.json
@@ -40,6 +40,7 @@
40
"Moodle",
41
"Piwik",
42
"phpBB",
43
+ "Plentymarkets",
44
"PPI",
45
"Puppet",
46
"RadPHP",
src/Composer/Installers/Installer.php
@@ -60,6 +60,7 @@ class Installer extends LibraryInstaller
60
'phpbb' => 'PhpBBInstaller',
61
'pimcore' => 'PimcoreInstaller',
62
'piwik' => 'PiwikInstaller',
63
+ 'plentymarkets'=> 'PlentymarketsInstaller',
64
'ppi' => 'PPIInstaller',
65
'puppet' => 'PuppetInstaller',
66
'radphp' => 'RadPHPInstaller',
src/Composer/Installers/PlentymarketsInstaller.php
@@ -0,0 +1,28 @@
1
+<?php
2
+namespace Composer\Installers;
3
+
4
+class PlentymarketsInstaller extends BaseInstaller
5
+{
6
+ protected $locations = array(
7
+ 'plugin' => '{$name}/'
8
+ );
9
10
+ /**
11
+ * Remove hyphen, "plugin" and format to camelcase
12
+ */
13
+ public function inflectPackageVars($vars)
14
+ {
15
+ $vars['name'] = explode("-", $vars['name']);
16
+ foreach($vars['name'] as $key => $name)
17
18
+ $vars['name'][$key] = ucfirst($vars['name'][$key]);
19
+ if(strcasecmp($name, "Plugin") == 0)
20
21
+ unset($vars['name'][$key]);
22
+ }
23
24
+ $vars['name'] = implode("",$vars['name']);
25
26
+ return $vars;
27
28
+}
tests/Composer/Installers/Test/InstallerTest.php
@@ -153,6 +153,7 @@ public function dataForTestSupport()
153
array('piwik-plugin', true),
154
array('phpbb-extension', true),
155
array('pimcore-plugin', true),
156
+ array('plentymarkets-plugin', true),
157
array('ppi-module', true),
158
array('prestashop-module', true),
159
array('prestashop-theme', true),
@@ -295,6 +296,7 @@ public function dataForTestInstallPath()
295
296
array('phpbb-style', 'styles/foo/', 'test/foo'),
297
array('phpbb-language', 'language/foo/', 'test/foo'),
298
array('pimcore-plugin', 'plugins/MyPlugin/', 'ubikz/my_plugin'),
299
+ array('plentymarkets-plugin', 'HelloWorld/', 'plugin-hello-world'),
300
array('ppi-module', 'modules/foo/', 'test/foo'),
301
array('puppet-module', 'modules/puppet-name/', 'puppet/puppet-name'),
302
array('radphp-bundle', 'src/Migration/', 'atkrad/migration'),
0 commit comments