From 32dfb28ac4599d8c6901a0f1bbc945bd8b5a1503 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yunus=20Emre=20Deligo=CC=88z?= Date: Wed, 22 May 2024 23:14:07 +0300 Subject: [PATCH] Update .gitignore to ignore PHPUnit Cache files An additional line has been added to the .gitignore file to ensure that PHPUnit cache files are not tracked by Git. This is beneficial in keeping our repository clean of temporary or local files that shouldn't be shared between developers. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 2702258..109e496 100644 --- a/.gitignore +++ b/.gitignore @@ -6,6 +6,7 @@ composer.lock /vendor/ coverage.xml .phpunit.result.cache +.phpunit.cache/* .php_cs.cache .temp/coverage.php *.swp