task composerInstall(type: Exec) { description "Run 'composer install' to download php dependencies" workingDir 'HelixWebServices' commandLine '../php.sh', '../composer.phar', 'install' } task phpunit(type: Exec) { description "Runs phpunit to exec tests" workingDir 'HelixWebServices' commandLine '../php.sh', '../phpunit.phar', '--bootstrap', 'autoload.php', 'tests/DepotTests.php' }