From 127ad618d3a260afc043692f2732a6a585560d6a Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Sat, 26 Jul 2025 07:34:19 -0600 Subject: [PATCH 1/2] chore: style --- src/Repositories/SnapshotRepository.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Repositories/SnapshotRepository.php b/src/Repositories/SnapshotRepository.php index 171fd88f..7f7a9573 100644 --- a/src/Repositories/SnapshotRepository.php +++ b/src/Repositories/SnapshotRepository.php @@ -19,8 +19,8 @@ final class SnapshotRepository * Creates a snapshot repository instance. */ public function __construct( - readonly private string $testsPath, - readonly private string $snapshotsPath, + private readonly string $testsPath, + private readonly string $snapshotsPath, ) {} /** From f692be3637fea0fabb9505afca451e9a2d2b9c0d Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Sat, 26 Jul 2025 07:34:25 -0600 Subject: [PATCH 2/2] chore: bumps dependencies --- composer.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/composer.json b/composer.json index a4f0f21d..d9a55865 100644 --- a/composer.json +++ b/composer.json @@ -19,10 +19,10 @@ "require": { "php": "^8.2.0", "brianium/paratest": "^7.8.3", - "nunomaduro/collision": "^8.8.0", - "nunomaduro/termwind": "^2.3.0", + "nunomaduro/collision": "^8.8.2", + "nunomaduro/termwind": "^2.3.1", "pestphp/pest-plugin": "^3.0.0", - "pestphp/pest-plugin-arch": "^3.1.0", + "pestphp/pest-plugin-arch": "^3.1.1", "pestphp/pest-plugin-mutate": "^3.0.5", "phpunit/phpunit": "^11.5.15" }, @@ -54,8 +54,8 @@ }, "require-dev": { "pestphp/pest-dev-tools": "^3.4.0", - "pestphp/pest-plugin-type-coverage": "^3.5.0", - "symfony/process": "^7.2.5" + "pestphp/pest-plugin-type-coverage": "^3.6.1", + "symfony/process": "^7.3.0" }, "minimum-stability": "dev", "prefer-stable": true,