From 1f4213d7407b2dc7a848d32b1e583090f1a12600 Mon Sep 17 00:00:00 2001 From: Christian Schira Date: Tue, 11 Nov 2025 16:15:38 +0100 Subject: [PATCH] Add missing `migrations` entry in possible list of directories to scan. --- .php-cs-fixer.dist.php | 1 + CHANGELOG.md | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php index 4722c28..661d2d8 100644 --- a/.php-cs-fixer.dist.php +++ b/.php-cs-fixer.dist.php @@ -12,6 +12,7 @@ "app", "config", "custom", + "migrations", "public", "src", "tests", diff --git a/CHANGELOG.md b/CHANGELOG.md index cfc0fbf..c0beace 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +1.1.7 +===== + +* (bug) Add missing `migrations` entry in possible list of directories to scan. + + 1.1.6 =====