PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Classes of zinsou A.A.E.Moïse   PHP Strip HTML Tags   phpunit.xml   Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Strip HTML Tags
Process HTML to strip tags, attributes or PHP code
Author: By
Last change: Fix typo
Date: 4 years ago
Size: 750 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8"?> <!-- https://phpunit.de/manual/current/en/appendixes.configuration.html --> <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.5/phpunit.xsd" backupGlobals="false" colors="true" bootstrap="vendor/autoload.php" > <php> <ini name="error_reporting" value="-1" /> </php> <testsuites> <testsuite name="Project Test Suite"> <directory>tests/</directory> </testsuite> </testsuites> <filter> <whitelist processUncoveredFilesFromWhitelist="true"> <directory suffix=".php">src</directory> </whitelist> </filter> </phpunit>