Use local phpunit

This commit is contained in:
Pierre Rudloff 2016-08-01 12:28:35 +02:00
parent 7ac7f2ec92
commit b516cb6346
3 changed files with 1257 additions and 3 deletions

View file

@ -53,6 +53,12 @@ module.exports = function (grunt) {
}
},
phpunit: {
options: {
bin: './vendor/bin/phpunit',
stopOnError: true,
stopOnFailure: true,
followOutput: true
},
classes: {
dir: 'tests/'
}