Skip to content

Commit

Permalink
Upgrade PHPUnit
Browse files Browse the repository at this point in the history
  • Loading branch information
nicwortel committed Sep 29, 2023
1 parent 08e2bfc commit bbf164f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/vendor/
/.phpcs-cache
/.phpunit.result.cache
/.phpunit.cache
/composer.lock
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"nicwortel/coding-standard": "^2.0",
"phpstan/phpstan": "^1.8",
"phpstan/phpstan-symfony": "^1.2",
"phpunit/phpunit": "^9.0",
"phpunit/phpunit": "^10.3",
"slevomat/coding-standard": ">=6.3.11",
"squizlabs/php_codesniffer": "^3.5",
"symfony/process": "^5.0"
Expand Down
9 changes: 4 additions & 5 deletions phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,17 @@
bootstrap="vendor/autoload.php"
executionOrder="depends,defects"
beStrictAboutOutputDuringTests="true"
beStrictAboutTodoAnnotatedTests="true"
colors="true"
verbose="true">
cacheDirectory=".phpunit.cache">
<testsuites>
<testsuite name="default">
<directory suffix="Test.php">tests</directory>
</testsuite>
</testsuites>

<coverage processUncoveredFiles="true">
<coverage/>
<source>
<include>
<directory suffix=".php">src</directory>
</include>
</coverage>
</source>
</phpunit>

0 comments on commit bbf164f

Please sign in to comment.