From 1c36c57a52bd2c915e4558e3e87d74dd3946494f Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Sat, 13 Oct 2018 23:05:01 +0200 Subject: [PATCH] [BUGFIX] Add .php_cs.cache to the .gitignore (#33) [ci skip] --- .gitignore | 5 +++-- CHANGELOG.md | 3 ++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 704d75b..f589cd9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ /.Build/* -*.idea -/composer.lock +/*.idea +/.php_cs.cache +composer.lock /nbproject diff --git a/CHANGELOG.md b/CHANGELOG.md index a8a4e61..97b0443 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ This project adheres to [Semantic Versioning](https://semver.org/). ### Removed ### Fixed +- Add .php_cs.cache to the .gitignore (#33) ## 2.0.0 -Complete rewrite. Usable with TYPO3 7.6 and 8.7. \ No newline at end of file +Complete rewrite. Usable with TYPO3 7.6 and 8.7.