PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Packages of Tomáš Vojík   PHP Tournament Bracket Generator   phpunit.xml   Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Tournament Bracket Generator
Organize the matches of teams in a tournament
Author: By
Last change: :heavy_plus_sign: Added new code quality tools

Signed-off-by: Tomáš Vojík <vojik@wboy.cz>
Date: 9 months ago
Size: 772 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8"?> <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/autoload.php" colors="true" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/12.2/phpunit.xsd" cacheDirectory=".phpunit.cache"> <coverage> <report> <clover outputFile="build/coverage.xml"/> <html outputDirectory="build/coverage"/> <php outputFile="build/coverage.serialized"/> </report> </coverage> <testsuites> <testsuite name="Tournament Generator"> <directory>tests</directory> </testsuite> </testsuites> <logging/> <source> <include> <directory>./src</directory> <directory>./build</directory> </include> </source> </phpunit>