Skip to content

Commit caa9a08

Browse files
committed
chore: upgrade dev packages
- `symfony/var-dumper` to `^7.1` - `pestphp/pest` to `^3.5`
1 parent d06eb6b commit caa9a08

File tree

2 files changed

+14
-21
lines changed

2 files changed

+14
-21
lines changed

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
},
2929
"require-dev": {
3030
"squizlabs/php_codesniffer": "@stable",
31-
"symfony/var-dumper": "^5.0",
32-
"pestphp/pest": "^1.0"
31+
"symfony/var-dumper": "^7.1",
32+
"pestphp/pest": "^3.5"
3333
},
3434
"config": {
3535
"allow-plugins": {

phpunit.xml

Lines changed: 12 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,20 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit backupGlobals="false"
3-
backupStaticAttributes="false"
4-
beStrictAboutTestsThatDoNotTestAnything="true"
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.4/phpunit.xsd"
54
beStrictAboutOutputDuringTests="true"
65
bootstrap="vendor/autoload.php"
76
colors="true"
8-
convertErrorsToExceptions="true"
9-
convertNoticesToExceptions="true"
10-
convertWarningsToExceptions="true"
117
failOnRisky="true"
128
failOnWarning="true"
13-
processIsolation="false"
14-
stopOnError="false"
15-
stopOnFailure="false"
16-
verbose="true"
179
>
18-
<testsuite>
19-
<directory suffix="Test.php">tests</directory>
20-
</testsuite>
21-
22-
<filter>
23-
<whitelist processUncoveredFilesFromWhitelist="true">
24-
<directory suffix=".php">src</directory>
25-
</whitelist>
26-
</filter>
10+
<testsuites>
11+
<testsuite name="Unit">
12+
<directory>tests</directory>
13+
</testsuite>
14+
</testsuites>
15+
<source>
16+
<include>
17+
<directory>./src</directory>
18+
</include>
19+
</source>
2720
</phpunit>

0 commit comments

Comments
 (0)