Skip to content

Commit efb38f7

Browse files
committed
chore: bumps dependencies
1 parent e7d1aa8 commit efb38f7

File tree

3 files changed

+11
-10
lines changed

3 files changed

+11
-10
lines changed

composer.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,23 +16,23 @@
1616
"require": {
1717
"php": "^8.2.0",
1818
"filp/whoops": "^2.15.4",
19-
"nunomaduro/termwind": "^2.0.1",
20-
"symfony/console": "^7.1.3"
19+
"nunomaduro/termwind": "^2.1.0",
20+
"symfony/console": "^7.1.4"
2121
},
2222
"conflict": {
2323
"laravel/framework": "<11.0.0 || >=12.0.0",
2424
"phpunit/phpunit": "<10.5.1 || >=12.0.0"
2525
},
2626
"require-dev": {
27-
"laravel/framework": "^11.19.0",
28-
"laravel/pint": "^1.17.1",
27+
"laravel/framework": "^11.23.5",
28+
"laravel/pint": "^1.17.3",
2929
"laravel/tinker": "^2.9.0",
30-
"laravel/sail": "^1.31.0",
30+
"laravel/sail": "^1.32.0",
3131
"laravel/sanctum": "^4.0.2",
3232
"larastan/larastan": "^2.9.8",
33-
"orchestra/testbench-core": "^9.2.3",
34-
"pestphp/pest": "^2.35.0 || ^3.0.0",
35-
"sebastian/environment": "^6.1.0 || ^7.0.0"
33+
"orchestra/testbench-core": "^9.4.1",
34+
"pestphp/pest": "^2.35.0 || ^3.0.8",
35+
"sebastian/environment": "^6.1.0 || ^7.2.0"
3636
},
3737
"autoload-dev": {
3838
"psr-4": {

src/Adapters/Phpunit/Style.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -455,6 +455,7 @@ private function writeDescriptionLine(TestResult $result): void
455455

456456
$description = $result->description;
457457

458+
/** @var string $description */
458459
$description = preg_replace('/`([^`]+)`/', '<span class="text-white">$1</span>', $description);
459460

460461
if (class_exists(\Pest\Collision\Events::class)) {

src/ConsoleColor.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -218,8 +218,8 @@ private function styleSequence(string $style): ?string
218218

219219
preg_match(self::COLOR256_REGEXP, $style, $matches);
220220

221-
$type = $matches[1] === 'bg_' ? self::BACKGROUND : self::FOREGROUND;
222-
$value = $matches[2];
221+
$type = $matches[1] === 'bg_' ? self::BACKGROUND : self::FOREGROUND; // @phpstan-ignore-line
222+
$value = $matches[2]; // @phpstan-ignore-line
223223

224224
return "$type;5;$value";
225225
}

0 commit comments

Comments
 (0)