First Robo automation file, Rake-like.

This commit is contained in:
marco
2015-07-17 22:43:22 +02:00
parent 5b70529978
commit bae0dcba5b
2 changed files with 7 additions and 0 deletions

6
RoboFile.php Normal file
View File

@ -0,0 +1,6 @@
<?php
class RoboFile extends \Robo\Tasks {
function update() {
$this->_exec('./composer.phar update');
}
}