Skip to content

Commit 629c476

Browse files
author
David Verholen
committed
modified: src/MagentoHackathon/Composer/Magento/DeployManager.php
new file: src/MagentoHackathon/Composer/Magento/Installer/CoreInstaller.php renamed: src/MagentoHackathon/Composer/Magento/Installer.php -> src/MagentoHackathon/Composer/Magento/Installer/MagentoInstallerAbstract.php new file: src/MagentoHackathon/Composer/Magento/Installer/ModuleInstaller.php modified: src/MagentoHackathon/Composer/Magento/Plugin.php
1 parent b7a6dbd commit 629c476

File tree

5 files changed

+492
-159
lines changed

5 files changed

+492
-159
lines changed

src/MagentoHackathon/Composer/Magento/DeployManager.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
use MagentoHackathon\Composer\Magento\Deploystrategy\Copy;
1515

1616
class DeployManager {
17+
18+
const SORT_PRIORITY_KEY = 'magento-deploy-sort-priority';
19+
1720
/**
1821
* @var Entry[]
1922
*/

src/MagentoHackathon/Composer/Magento/Installer/CoreInstaller.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55

66
namespace MagentoHackathon\Composer\Magento\Installer;
77

8+
89
use Composer\Composer;
910
use Composer\IO\IOInterface;
1011
use Composer\Package\PackageInterface;
@@ -13,6 +14,7 @@
1314
use MagentoHackathon\Composer\Magento\Deploystrategy\Copy;
1415
use MagentoHackathon\Composer\Magento\Deploy\Manager\Entry;
1516

17+
1618
/**
1719
* Class CoreInstaller
1820
*
@@ -107,6 +109,7 @@ public function supports($packageType)
107109
return self::PACKAGE_TYPE === $packageType;
108110
}
109111

112+
110113
/**
111114
* Installs specific package
112115
*
@@ -359,4 +362,4 @@ protected function redeployProject()
359362
$strategy->deploy();
360363
}
361364
}
362-
}
365+
}

0 commit comments

Comments
 (0)