gulp.task('phpunit', function(){
    test = 'phpunit';
    return gulp.src('phpunit.xml.dist')
        .pipe(phpunit('', {notify: true, debug:true}))
        .on('error', handleErrors)