Skip to content

Commit b6a86c8

Browse files
committed
Enhancement: Reference phpunit.xsd as installed with composer
1 parent 94aef9e commit b6a86c8

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

phpunit.xml.dist

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,17 @@
22

33
<!-- http://www.phpunit.de/manual/current/en/appendixes.configuration.html -->
44
<phpunit
5-
backupGlobals = "false"
6-
backupStaticAttributes = "false"
7-
colors = "true"
8-
convertErrorsToExceptions = "true"
9-
convertNoticesToExceptions = "true"
10-
convertWarningsToExceptions = "true"
11-
processIsolation = "false"
12-
stopOnFailure = "false"
13-
bootstrap = "vendor/autoload.php">
5+
xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance"
6+
xsi:noNamespaceSchemaLocation = "vendor/phpunit/phpunit/phpunit.xsd"
7+
backupGlobals = "false"
8+
backupStaticAttributes = "false"
9+
colors = "true"
10+
convertErrorsToExceptions = "true"
11+
convertNoticesToExceptions = "true"
12+
convertWarningsToExceptions = "true"
13+
processIsolation = "false"
14+
stopOnFailure = "false"
15+
bootstrap = "vendor/autoload.php">
1416

1517
<testsuites>
1618
<testsuite name="Project Test Suite">

0 commit comments

Comments
 (0)