Skip to content

Commit 913e4b2

Browse files
committed
Update to PHPUnit ^10
1 parent 9842251 commit 913e4b2

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,6 @@
88
/coverage.clover
99
/phpunit.xml
1010
/.phpunit.result.cache
11+
/.phpunit.cache/
1112
/.phpcs-cache
1213
/phpcs.xml

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"require-dev": {
3434
"inspirum/coding-standard": "^1.2",
3535
"phpstan/phpstan": "^1.9",
36-
"phpunit/phpunit": "^9.5",
36+
"phpunit/phpunit": "^10.0",
3737
"squizlabs/php_codesniffer": "^3.7",
3838
"symfony/yaml": "^6.1"
3939
},

phpunit.xml.dist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd" backupGlobals="false" colors="true" bootstrap="vendor/autoload.php" convertDeprecationsToExceptions="false">
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd" backupGlobals="false" colors="true" bootstrap="vendor/autoload.php" cacheDirectory="var/phpunit/cache">
33
<php>
44
<ini name="display_errors" value="1"/>
55
<ini name="error_reporting" value="-1"/>
@@ -11,7 +11,7 @@
1111
<directory>tests/</directory>
1212
</testsuite>
1313
</testsuites>
14-
<coverage processUncoveredFiles="true">
14+
<coverage>
1515
<include>
1616
<directory suffix=".php">src</directory>
1717
</include>

0 commit comments

Comments
 (0)