Skip to content

Commit 95a2d62

Browse files
committed
qa: use local XSD for phpunit config
Signed-off-by: Matthew Weier O'Phinney <matthew@weierophinney.net>
1 parent 3ac254a commit 95a2d62

File tree

1 file changed

+16
-11
lines changed

1 file changed

+16
-11
lines changed

phpunit.xml.dist

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,18 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="./vendor/autoload.php" colors="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
3-
<coverage includeUncoveredFiles="true">
4-
<include>
5-
<directory suffix=".php">./src</directory>
6-
</include>
7-
</coverage>
8-
<testsuites>
9-
<testsuite name="LaminasVersioning Module Tests">
10-
<directory>./test</directory>
11-
</testsuite>
12-
</testsuites>
2+
<phpunit
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
bootstrap="./vendor/autoload.php"
5+
colors="true"
6+
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd">
7+
<coverage includeUncoveredFiles="true">
8+
<include>
9+
<directory suffix=".php">./src</directory>
10+
</include>
11+
</coverage>
12+
13+
<testsuites>
14+
<testsuite name="LaminasVersioning Module Tests">
15+
<directory>./test</directory>
16+
</testsuite>
17+
</testsuites>
1318
</phpunit>

0 commit comments

Comments
 (0)