Skip to content

Commit

Permalink
upgraded from PHPUnit 9 to 10
Browse files Browse the repository at this point in the history
  • Loading branch information
driehle committed Nov 28, 2024
1 parent 8897083 commit 5de08e5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/.phpcs.cache
/.phpunit.cache/
/.phpunit.result.cache
/coverage.xml
/composer.lock
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"require-dev": {
"doctrine/coding-standard": "^12.0.0",
"phpstan/phpstan": "^1.9.2",
"phpunit/phpunit": "^9.5.26",
"phpunit/phpunit": "^10.5",
"vimeo/psalm": "^5.15.0"
},
"autoload": {
Expand Down
15 changes: 8 additions & 7 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true">
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">./src</directory>
</include>
</coverage>
colors="true"
cacheDirectory=".phpunit.cache">
<testsuites>
<testsuite name="doctrine-laminas-hydrator">
<directory>./tests</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">./src</directory>
</include>
</source>
</phpunit>

0 comments on commit 5de08e5

Please sign in to comment.