From 42b369b1c857a773d8fbcd319ddd5b3eab6f5106 Mon Sep 17 00:00:00 2001 From: Jason Varga Date: Fri, 18 Oct 2019 20:04:31 -0400 Subject: [PATCH] File for Windows to run tests Composer automatically creates bat files for everything in bin if you install on Windows. If you don't install on Windows, it wont be there. If you share your Mac code with Windows, like me, this'll help. Yay Windows. --- phpunit.bat | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 phpunit.bat diff --git a/phpunit.bat b/phpunit.bat new file mode 100644 index 0000000000..e9d7b9cc94 --- /dev/null +++ b/phpunit.bat @@ -0,0 +1,4 @@ +@ECHO OFF +setlocal DISABLEDELAYEDEXPANSION +SET BIN_TARGET=%~dp0/vendor/phpunit/phpunit/phpunit +php "%BIN_TARGET%" %* \ No newline at end of file