for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace MagentoHackathon\Composer\Magento;
use MagentoHackathon\Composer\Magento\Event\PackageDeployEvent;
use MagentoHackathon\Composer\Magento\Event\PackageUnInstallEvent;
/**
* Class GitIgnoreListener
* @package MagentoHackathon\Composer\Magento
* @author Aydin Hassan <[email protected]>
*/
class GitIgnoreListener
{
* @var GitIgnore
protected $gitIgnore;
* @param GitIgnore $gitIgnore
public function __construct(GitIgnore $gitIgnore)
$this->gitIgnore = $gitIgnore;
}
* Add any files which were installed to the .gitignore
*
* @param PackageDeployEvent $packageDeployEvent
public function addNewInstalledFiles(PackageDeployEvent $packageDeployEvent)
$this->gitIgnore->addMultipleEntries(
$packageDeployEvent->getDeployEntry()->getDeployStrategy()->getDeployedFiles()
);
$this->gitIgnore->write();
* Remove any files which were removed to the .gitignore
* @param PackageUnInstallEvent $e
public function removeUnInstalledFiles(PackageUnInstallEvent $e)
$this->gitIgnore->removeMultipleEntries($e->getInstalledFiles());