updates dependencies and snapshots

This commit is contained in:
Nuno Maduro
2025-07-22 23:51:32 +01:00
parent 21e22decf3
commit f9901245f1
10 changed files with 31 additions and 26 deletions

View File

@ -660,7 +660,7 @@ final class Expectation
{
foreach ($keys as $k => $key) {
if (is_array($key)) {
$this->toHaveKeys(array_keys(Arr::dot($key, $k . '.')), $message);
$this->toHaveKeys(array_keys(Arr::dot($key, $k.'.')), $message);
} else {
$this->toHaveKey($key, message: $message);
}

View File

@ -6,7 +6,7 @@ namespace Pest;
function version(): string
{
return '4.0.0-alpha.5';
return '4.0.0-alpha.6';
}
function testDirectory(string $file = ''): string

View File

@ -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,
) {}
/**

View File

@ -58,7 +58,7 @@ final class Str
{
$code = str_replace('_', '__', $code);
$code = self::PREFIX . str_replace(' ', '_', $code);
$code = self::PREFIX.str_replace(' ', '_', $code);
// sticks to PHP8.2 function naming rules https://www.php.net/manual/en/functions.user-defined.php
return (string) preg_replace('/[^a-zA-Z0-9_\x80-\xff]/', '_', $code);
@ -124,6 +124,7 @@ final class Str
public static function slugify(string $target): string
{
$target = preg_replace('/[^a-zA-Z0-9]+/', '-', $target);
return strtolower(trim($target, '-'));
}
}