Skip to content

Commit 3d2715b

Browse files
Stephan Wentzpl-github
authored andcommitted
fix: Raise dependency versions, require php 8.3, require phpunit 11
1 parent bdd00d8 commit 3d2715b

File tree

2 files changed

+17
-16
lines changed

2 files changed

+17
-16
lines changed

composer.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "brainbits controlling functional test helpers",
55
"license": "MIT",
66
"require": {
7-
"php": "^8.2",
7+
"php": "^8.3",
88
"thecodingmachine/safe": "^2.0"
99
},
1010
"require-dev": {
@@ -15,7 +15,7 @@
1515
"ext-tidy": "*",
1616
"brainbits/phpcs-standard": "^7.0",
1717
"brainbits/phpstan-rules": "^3.1.2",
18-
"dama/doctrine-test-bundle": "^6.0|^7.0",
18+
"dama/doctrine-test-bundle": "^8.0",
1919
"doctrine/dbal": "^3.4",
2020
"ergebnis/phpstan-rules": "^2.2.0",
2121
"jangregor/phpstan-prophecy": "^1.0",
@@ -24,20 +24,20 @@
2424
"phpstan/phpstan": "^1.10",
2525
"phpstan/phpstan-phpunit": "^1.0",
2626
"phpstan/phpstan-symfony": "^1.0",
27-
"phpunit/phpunit": "^10.5",
28-
"riverline/multipart-parser": "^2.0",
27+
"phpunit/phpunit": "^11.4",
28+
"riverline/multipart-parser": "^2.1",
2929
"slam/phpstan-extensions": "^6.0",
30-
"symfony/browser-kit": "^6.4|^7.0",
31-
"symfony/console": "^6.4|^7.0",
32-
"symfony/dependency-injection": "^6.4|^7.0",
33-
"symfony/filesystem": "^6.4|^7.0",
34-
"symfony/framework-bundle": "^6.4|^7.0",
35-
"symfony/http-client": "^6.4|^7.0",
36-
"symfony/http-foundation": "^6.4|^7.0",
37-
"symfony/mime": "^6.4|^7.0",
38-
"symfony/security-core": "^6.4|^7.0",
39-
"symfony/security-csrf": "^6.4|^7.0",
40-
"symfony/uid": "^6.4|^7.0",
30+
"symfony/browser-kit": "^7.0",
31+
"symfony/console": "^7.0",
32+
"symfony/dependency-injection": "^7.0",
33+
"symfony/filesystem": "^7.0",
34+
"symfony/framework-bundle": "^7.0",
35+
"symfony/http-client": "^7.0",
36+
"symfony/http-foundation": "^7.0",
37+
"symfony/mime": "^7.0",
38+
"symfony/security-core": "^7.0",
39+
"symfony/security-csrf": "^7.0",
40+
"symfony/uid": "^7.0",
4141
"thecodingmachine/phpstan-safe-rule": "^1.1",
4242
"thecodingmachine/phpstan-strict-rules": "^1.0"
4343
},

src/Snapshot/IsXml.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
use DOMDocument;
88
use PHPUnit\Framework\Constraint\Constraint;
9+
use PHPUnit\Util\Exporter;
910
use Throwable;
1011

1112
use function sprintf;
@@ -71,7 +72,7 @@ protected function failureDescription($other): string
7172

7273
return sprintf(
7374
'%s is valid XML (%s)',
74-
$this->exporter()->shortenedExport($other),
75+
Exporter::shortenedExport($other),
7576
$error,
7677
);
7778
}

0 commit comments

Comments
 (0)