Skip to content

Commit 7b09625

Browse files
committed
var dump 1.0.1
1 parent ecb7095 commit 7b09625

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@
2121
"php": "^8.1",
2222
"ext-curl": "*",
2323
"ext-json": "*",
24-
"chevere/filesystem": "^1.0.x-dev",
24+
"chevere/filesystem": "^1.0.0",
2525
"chevere/message": "^1.0.0",
26-
"chevere/throwable-handler": "^0.12.x-dev",
26+
"chevere/throwable-handler": "^0.12.0",
2727
"chevere/trace": "^1.0.0",
28-
"chevere/var-dump": "^1.0.x-dev",
28+
"chevere/var-dump": "^1.0.1",
2929
"phpseclib/phpseclib": "~3.0",
3030
"ramsey/uuid": "^4.7"
3131
},

tests/FunctionsTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public function testXr(): void
3131
xr($var, t: 'Topic', e: '😎', f: XR_BACKTRACE);
3232
$this->assertSame(
3333
'<pre>
34-
Arg1 <span style="color:#ff8700">string</span> ' . $var . ' <em><span style="color:rgb(108 108 108 / 65%);">(length=' . $length . ')</span></em></pre>',
34+
Arg#1 <span style="color:#ff8700">string</span> ' . $var . ' <em><span style="color:rgb(108 108 108 / 65%);">(length=' . $length . ')</span></em></pre>',
3535
$writer->__toString()
3636
);
3737
new WriterInstance($previousWriter);

tests/MessageTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ public function testWithDumpVars(): void
160160
);
161161
$expected = $body . <<<HTML
162162
<div class="dump"><pre>
163-
Arg1 <span style="color:#ff8700">string</span> {$variable} <em><span style="color:rgb(108 108 108 / 65%);">(length={$length})</span></em></pre></div>
163+
Arg#1 <span style="color:#ff8700">string</span> {$variable} <em><span style="color:rgb(108 108 108 / 65%);">(length={$length})</span></em></pre></div>
164164
HTML;
165165
$this->assertSame($expected, $withVariables->toArray()['body']);
166166
}

0 commit comments

Comments
 (0)