Skip to content

Commit

Permalink
Tiny tweaks (#436)
Browse files Browse the repository at this point in the history
* tweak: phpunit config

* tweak: https in readme
  • Loading branch information
g105b authored Jul 17, 2023
1 parent 0f1fa7f commit 5e759d5
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Performing DOM manipulation in your server-side code enhances the way dynamic pa
<a href="https://packagist.org/packages/PhpGt/Dom" target="_blank">
<img src="https://badge.status.php.gt/dom-version.svg" alt="Current version" />
</a>
<a href="http://www.php.gt/dom" target="_blank">
<a href="https://www.php.gt/dom" target="_blank">
<img src="https://badge.status.php.gt/dom-docs.svg" alt="PHP.Gt/Dom documentation" />
</a>

Expand Down
21 changes: 13 additions & 8 deletions test/phpunit/phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,18 +1,23 @@
<?xml version="1.0"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" colors="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd"
colors="true"
cacheDirectory=".phpunit.cache"
>
<coverage>
<include>
<directory suffix=".php">../../src</directory>
<directory suffix=".php">
../../src
</directory>
</include>
<report>
<html outputDirectory="./_coverage" lowUpperBound="35" highLowerBound="70"/>
<text outputFile="php://stdout" showUncoveredFiles="true"/>
</report>
</coverage>
<testsuites>
<testsuite name="main">
<directory suffix="Test.php">.</directory>
<directory>
./
</directory>
</testsuite>
</testsuites>
<logging/>
</phpunit>
</phpunit>

0 comments on commit 5e759d5

Please sign in to comment.