* @package PHPCI * @subpackage Plugins */ class CleanBuild implements \PHPCI\Plugin { protected $remove; protected $phpci; protected $build; public function __construct(Builder $phpci, Build $build, array $options = array()) { $this->phpci = $phpci; $this->build = $build; $this->remove = isset($options['remove']) && is_array($options['remove']) ? $options['remove'] : array(); } /** * Executes Composer and runs a specified command (e.g. install / update) */ public function execute() { $cmd = 'rm -Rf "%s"'; if (IS_WIN) { $cmd = 'rmdir /S /Q "%s"'; } $this->phpci->executeCommand($cmd, $this->phpci->buildPath . 'composer.phar'); $this->phpci->executeCommand($cmd, $this->phpci->buildPath . 'composer.lock'); $success = true; foreach ($this->remove as $file) { $ok = $this->phpci->executeCommand($cmd, $this->phpci->buildPath . $file); if (!$ok) { $success = false; } } return $success; } }