Skip to content

Commit

Permalink
Raise minimum PHPUnit version
Browse files Browse the repository at this point in the history
  • Loading branch information
mmoll committed Jan 29, 2025
1 parent c9e599f commit 3a6f726
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"phan/phan": "^5.4.5",
"phpstan/phpstan": "^1.12",
"phpstan/phpstan-strict-rules": "^1.6",
"phpunit/phpunit": "^8.5.36 || ^9.6.15",
"phpunit/phpunit": "^9.6.15",
"psalm/plugin-phpunit": "^0.19",
"sabre/event": "^5.1.6",
"symfony/filesystem": ">= 5.4.45",
Expand Down
10 changes: 6 additions & 4 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?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"
backupGlobals="true"
beStrictAboutTestsThatDoNotTestAnything="false"
bootstrap="tests/bootstrap.php"
Expand All @@ -9,9 +11,9 @@
<file>vendor/squizlabs/php_codesniffer/tests/Standards/AllSniffs.php</file>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="false">
<coverage processUncoveredFiles="false">
<include>
<directory suffix=".php">./MO4/Sniffs</directory>
</whitelist>
</filter>
</include>
</coverage>
</phpunit>

0 comments on commit 3a6f726

Please sign in to comment.