PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Classes of John Conde   PHP Email Validation Library Pro   phpunit.xml   Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Email Validation Library Pro
Validate email addresses using multiple rules
Author: By
Last change: chore: updated format of phpunit.xml to new format
Date: 11 days ago
Size: 832 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8"?> <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" backupStaticAttributes="false" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"> <coverage> <include> <directory suffix=".php">./src</directory> </include> <exclude> <directory>vendor</directory> </exclude> <report> <html outputDirectory="./build/coverage/" lowUpperBound="35" highLowerBound="70"/> </report> </coverage> <logging/> <testsuites> <testsuite name="unit"> <directory>./tests/EmailValidator/</directory> </testsuite> </testsuites> </phpunit>