Skip to content

Commit

Permalink
Upgrade phpunit/phpunit from ^9.0 to ^11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
shimomo committed Jan 5, 2025
1 parent d7caadd commit e1a432b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 12 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"php-di/php-di": "^6.0 || ^7.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0"
"phpunit/phpunit": "^11.0"
},
"autoload": {
"psr-4": {
Expand Down
20 changes: 9 additions & 11 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false">

Expand All @@ -14,13 +10,15 @@
</testsuite>
</testsuites>

<filter>
<whitelist>
<source>
<include>
<directory>./src</directory>
</whitelist>
</filter>
</include>
</source>

<logging>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
<coverage>
<report>
<clover outputFile="build/logs/clover.xml"/>
</report>
</coverage>
</phpunit>

0 comments on commit e1a432b

Please sign in to comment.