Skip to content

Commit 5c3e203

Browse files
author
ChristianMoll
committed
plentymarkets custom installer
Created plentymarkets custom installer for plentymarkets plugin packages.
1 parent 99e6aa7 commit 5c3e203

File tree

5 files changed

+33
-0
lines changed

5 files changed

+33
-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
| Piwik | `piwik-plugin`
7878
| phpBB | `phpbb-extension`<br>`phpbb-style`<br>`phpbb-language`
7979
| Pimcore | `pimcore-plugin`
80+
| Plentymarkets | `plentymarkets-plugin`
8081
| PPI | **`ppi-module`**
8182
| Puppet | `puppet-module`
8283
| RadPHP | `radphp-bundle`

composer.json

+1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
"Moodle",
4141
"Piwik",
4242
"phpBB",
43+
"Plentymarkets",
4344
"PPI",
4445
"Puppet",
4546
"RadPHP",

src/Composer/Installers/Installer.php

+1
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ class Installer extends LibraryInstaller
6060
'phpbb' => 'PhpBBInstaller',
6161
'pimcore' => 'PimcoreInstaller',
6262
'piwik' => 'PiwikInstaller',
63+
'plentymarkets'=> 'PlentymarketsInstaller',
6364
'ppi' => 'PPIInstaller',
6465
'puppet' => 'PuppetInstaller',
6566
'radphp' => 'RadPHPInstaller',
Original file line numberDiff line numberDiff line change
@@ -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

+2
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,7 @@ public function dataForTestSupport()
153153
array('piwik-plugin', true),
154154
array('phpbb-extension', true),
155155
array('pimcore-plugin', true),
156+
array('plentymarkets-plugin', true),
156157
array('ppi-module', true),
157158
array('prestashop-module', true),
158159
array('prestashop-theme', true),
@@ -295,6 +296,7 @@ public function dataForTestInstallPath()
295296
array('phpbb-style', 'styles/foo/', 'test/foo'),
296297
array('phpbb-language', 'language/foo/', 'test/foo'),
297298
array('pimcore-plugin', 'plugins/MyPlugin/', 'ubikz/my_plugin'),
299+
array('plentymarkets-plugin', 'HelloWorld/', 'plugin-hello-world'),
298300
array('ppi-module', 'modules/foo/', 'test/foo'),
299301
array('puppet-module', 'modules/puppet-name/', 'puppet/puppet-name'),
300302
array('radphp-bundle', 'src/Migration/', 'atkrad/migration'),

0 commit comments

Comments
 (0)