diff options
author | Christian Raue <christian.raue@gmail.com> | 2014-07-06 11:04:43 +0200 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2014-07-07 11:57:21 +0200 |
commit | 1a80bb526695c58ab10e984ae968364fb00b4477 (patch) | |
tree | f0a5c758e364b2696342408d883fea4c9e9f757d | |
parent | 89c67b56212c3e050681ba0acc0c2fc169a35f9a (diff) | |
download | symfony-security-1a80bb526695c58ab10e984ae968364fb00b4477.zip symfony-security-1a80bb526695c58ab10e984ae968364fb00b4477.tar.gz symfony-security-1a80bb526695c58ab10e984ae968364fb00b4477.tar.bz2 |
added XSD to PHPUnit configurationv2.3.17
-rw-r--r-- | phpunit.xml.dist | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/phpunit.xml.dist b/phpunit.xml.dist index f45a44e..875857f 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -1,6 +1,8 @@ <?xml version="1.0" encoding="UTF-8"?> -<phpunit backupGlobals="false" +<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.1/phpunit.xsd" + backupGlobals="false" backupStaticAttributes="false" colors="true" convertErrorsToExceptions="true" @@ -8,7 +10,6 @@ convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" - syntaxCheck="false" bootstrap="vendor/autoload.php" > <testsuites> |