Skip to content

Commit

Permalink
Add PHP8 Compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
antonkomarev committed Oct 11, 2023
1 parent 7a680d6 commit 5559d64
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,15 @@
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.4/phpunit.xsd"
bootstrap="src/test/php/bootstrap.php"
>
<source>
<include>
<directory suffix=".php">src/main/php</directory>
</include>
</source>
<testsuites>
<testsuite name="Unit">
<directory suffix="Test.php">./src/main/php</directory>
</testsuite>
<testsuite name="Feature">
<directory suffix="Test.php">./tests/Feature</directory>
</testsuite>
<testsuite name="OpenTsdbUnit">
<directory suffix="Test.php">./packages/open-tsdb/test/Unit</directory>
</testsuite>
</testsuites>
</phpunit>

0 comments on commit 5559d64

Please sign in to comment.