PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Classes of John Conde   PHP Password Validation Helper   phpunit.xml   Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Password Validation Helper
Generate and check a password according to rules
Author: By
Last change:
Date: 3 years ago
Size: 791 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8"?> <phpunit backupGlobals="false" backupStaticAttributes="false" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" > <logging> <log type="coverage-html" target="./build/coverage/" lowUpperBound="35" highLowerBound="70"/> </logging> <testsuites> <testsuite name="unit"> <directory>./tests/unit/</directory> </testsuite> </testsuites> <filter> <whitelist> <directory suffix=".php">./src</directory> <exclude> <directory>vendor</directory> </exclude> </whitelist> </filter> </phpunit>