psecio/gatekeeper

View on GitHub
phpunit.xml

Summary

Maintainability
Test Coverage
<phpunit backupGlobals="false"
         convertErrorsToExceptions="true"
         convertWarningsToExceptions="true"
         convertNoticesToExceptions="true"
         mapTestClassNameToCoveredClassName="true"
         bootstrap="tests/bootstrap.php"
         strict="false"
         verbose="true"
         colors="true">
    <testsuites>
        <testsuite name="csrf">
            <directory>./tests</directory>
        </testsuite>
    </testsuites>
    <filter>
        <whitelist>
            <directory suffix=".php">./src</directory>
        </whitelist>
    </filter>
</phpunit>