Skip to content

Commit c34199e

Browse files
committed
update phpunit
1 parent 6797b8f commit c34199e

File tree

2 files changed

+22
-12
lines changed

2 files changed

+22
-12
lines changed

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"larastan/larastan": "^3.0",
3131
"orchestra/testbench": "^9.0 || ^10.0",
3232
"phpstan/phpstan": "^2.0",
33-
"phpunit/phpunit": "^10.0"
33+
"phpunit/phpunit": "^11.0"
3434
},
3535
"minimum-stability": "stable",
3636
"autoload": {

phpunit.coverage.dist.xml

+21-11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,25 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" bootstrap="vendor/autoload.php" backupGlobals="false" colors="true" processIsolation="false" stopOnFailure="false" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
3-
<coverage>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.0/phpunit.xsd"
4+
bootstrap="vendor/autoload.php"
5+
backupGlobals="false"
6+
colors="true"
7+
stopOnFailure="false"
8+
cacheDirectory=".phpunit.cache"
9+
backupStaticProperties="false"
10+
>
11+
<source>
12+
<include>
13+
<directory suffix=".php">src</directory>
14+
</include>
15+
<exclude>
16+
<file>src/ServiceProvider.php</file>
17+
</exclude>
18+
</source>
19+
<coverage includeUncoveredFiles="true"
20+
pathCoverage="false"
21+
ignoreDeprecatedCodeUnits="true"
22+
disableCodeCoverageIgnore="true">
423
<report>
524
<clover outputFile="clover.xml"/>
625
</report>
@@ -15,13 +34,4 @@
1534
<env name="DB_CONNECTION" value="sqlite" force="true"/>
1635
<env name="DB_DATABASE" value=":memory:" force="true"/>
1736
</php>
18-
<source>
19-
<include>
20-
<directory suffix=".php">./src</directory>
21-
</include>
22-
<exclude>
23-
<file>src/ServiceProvider.php</file>
24-
<file>src/CompressionEncoding.php</file>
25-
</exclude>
26-
</source>
2737
</phpunit>

0 commit comments

Comments
 (0)