Add .phpunit.result.cache to the .gitignore

PHPUnit version 7.3 adds a new argument `--cache-result` which allows you to do awesome things like re-run test failures using a command like:

`phpunit --cache-result --order-by=defects --stop-on-defect`

The cache file is stored as `.phpunit.result.cache`

I believe PHPUnit 8 will have caching on by default, so this file will start popping up in everyone's project quickly.
This commit is contained in:
Caleb Porzio 2018-08-10 16:52:21 -04:00 committed by GitHub
parent 3e43e6b1d0
commit 6b40d49efd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

1
.gitignore vendored
View File

@ -11,3 +11,4 @@ Homestead.yaml
npm-debug.log
yarn-error.log
.env
.phpunit.result.cache