From 9ba7a186674bb36d2a80487a72060bd5755c7dec Mon Sep 17 00:00:00 2001 From: Tom Wright Date: Mon, 29 Apr 2024 09:06:31 +0000 Subject: [PATCH 1/3] Updated gitattributes Signed-off-by: Tom Wright --- .gitattributes | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitattributes b/.gitattributes index 789106a..cdcc774 100644 --- a/.gitattributes +++ b/.gitattributes @@ -8,4 +8,3 @@ phpstan.neon export-ignore phpunit.xml.dist export-ignore docs/ export-ignore tests/ export-ignore -stubs/ export-ignore From 723219b9a37b402c4321439904edf00a35d4601a Mon Sep 17 00:00:00 2001 From: Tom Wright Date: Mon, 29 Apr 2024 09:06:36 +0000 Subject: [PATCH 2/3] Updated ECS config Signed-off-by: Tom Wright --- ecs.php | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/ecs.php b/ecs.php index 4e7e999..b904391 100644 --- a/ecs.php +++ b/ecs.php @@ -5,9 +5,12 @@ declare(strict_types=1); use Symplify\EasyCodingStandard\Config\ECSConfig; -use Symplify\EasyCodingStandard\ValueObject\Set\SetList; -return static function (ECSConfig $ecsConfig): void { - $ecsConfig->paths([__DIR__ . '/src']); - $ecsConfig->sets([SetList::CLEAN_CODE, SetList::PSR_12]); -}; +return ECSConfig::configure() + ->withPaths([ + __DIR__ . '/src' + ]) + ->withPreparedSets( + cleanCode: true, + psr12: true + ); From e12e3b8b40979640e14e04b2672fd00e3bbaefe3 Mon Sep 17 00:00:00 2001 From: Tom Wright Date: Mon, 29 Apr 2024 09:37:07 +0000 Subject: [PATCH 3/3] Updated changelog Signed-off-by: Tom Wright --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ab9516b..9a7579d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## v0.5.6 (2024-04-29) +* Fixed Veneer stubs in gitattributes + ## v0.5.5 (2024-04-26) * Updated Archetype dependency