From bc864e2cd5c3b0a9339cdc9ca95abbdefce0352e Mon Sep 17 00:00:00 2001 From: thePanz Date: Wed, 13 Mar 2024 17:02:37 +0100 Subject: [PATCH] Update: move php-cs-fixer cache under .cache folder --- .gitignore | 3 ++- .php-cs-fixer.dist.php | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 3c17d4767..1c5624fa2 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ +.cache/ + /test/functional/fixtures/cache /test/functional/fixtures/log /lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/*/doctrine/base/ @@ -6,4 +8,3 @@ lib/plugins/sfDoctrinePlugin/test/functional/fixtures/log/ /vendor /composer.lock -.php-cs-fixer.cache diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php index c8de79acb..1212fe9b4 100644 --- a/.php-cs-fixer.dist.php +++ b/.php-cs-fixer.dist.php @@ -21,7 +21,7 @@ '@Symfony' => true, 'array_syntax' => ['syntax' => 'short'], ]) - ->setCacheFile('.php-cs-fixer.cache') + ->setCacheFile('.cache/php-cs-fixer.cache') ->setFinder($finder) ;