for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* Task runner, code generator and build tool for easier continuos integration
*
* @link https://github.com/hiqdev/hidev
* @package hidev
* @license BSD-3-Clause
* @copyright Copyright (c) 2014-2015, HiQDev (http://hiqdev.com/)
*/
namespace hidev\goals;
/**
* Update goal.
class UpdateGoal extends DefaultGoal
{
public function actionMake()
exec('cd .hidev;composer update --prefer-source');
$this->module->runRequest('');
}