From f6739f8820f12475c3449a00ec7a28619ba5ab43 Mon Sep 17 00:00:00 2001 From: Thomas Kuschan Date: Tue, 30 Jul 2024 17:52:53 +0200 Subject: [PATCH] Fix case for integration test path and add PHP CS Fixer cache file to gitignore --- .gitignore | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 5ea1bac5..04f05e15 100644 --- a/.gitignore +++ b/.gitignore @@ -3,14 +3,17 @@ composer.phar # ignore testdata with credentials -/tests/integration/testdata.ini -/tests/integration/integration.ini +/tests/Integration/testdata.ini +/tests/Integration/integration.ini # ignore ide configuration .idea/ # ignore phpunit-cache .phpunit.result.cache +# ignore php-cs-fixer cache +.php-cs-fixer.cache + # ignore log-files *.log