PHP Classes

File: phpunit.xml.dist

Recommend this page to a friend!
  Classes of Filip Štamcar   PHPMailer Logging with Monolog   phpunit.xml.dist   Download  
File: phpunit.xml.dist
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHPMailer Logging with Monolog
Log email sent via PHPMailer using Monolog
Author: By
Last change:
Date: 5 years ago
Size: 1,353 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8"?> <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/7.1/phpunit.xsd" backupGlobals="false" backupStaticAttributes="false" bootstrap="vendor/autoload.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false"> <testsuites> <testsuite name="tests"> <directory suffix="Test.php">./tests/</directory> </testsuite> </testsuites> <filter> <whitelist processUncoveredFilesFromWhitelist="false" addUncoveredFilesFromWhitelist="false"> <directory suffix=".php">./src/</directory> <exclude> <file>./src/PHPMailerHandler.php</file> </exclude> </whitelist> </filter> <logging> <log type="coverage-html" target="./build/coverage/" /> <log type="coverage-text" target="./build/coverage.txt" /> <log type="coverage-clover" target="./build/clover.xml" /> <log type="testdox-html" target="./build/testdox.html" /> <log type="testdox-text" target="./build/testdox.txt" /> </logging> </phpunit>