PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Classes of Angel Campos   PHP Application Skeleton   phpunit.xml   Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Application Skeleton
Base skeleton to build new packages
Author: By
Last change: Update of phpunit.xml
Date: 1 year ago
Size: 1,638 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/10.1/phpunit.xsd" bootstrap="vendor/autoload.php" cacheDirectory=".phpunit.cache" colors="true" executionOrder="depends,defects" requireCoverageMetadata="true" beStrictAboutCoverageMetadata="true" beStrictAboutOutputDuringTests="true" failOnRisky="true" failOnWarning="true" processIsolation="true" testdox="true" > <testsuites> <testsuite name="integration"> <directory phpVersion="8.2.0">tests/integration/</directory> </testsuite> <testsuite name="unit"> <directory phpVersion="8.2.0">tests/unit/</directory> </testsuite> </testsuites> <coverage includeUncoveredFiles="true"> <report> <clover outputFile="reports/clover.xml"/> <cobertura outputFile="reports/cobertura.xml"/> <html outputDirectory="reports/coverage/html" lowUpperBound="50" highLowerBound="90"/> <xml outputDirectory="reports/coverage/xml"/> </report> </coverage> <logging> <junit outputFile="logging/junit.xml"/> <teamcity outputFile="logging/teamcity.txt"/> <testdoxHtml outputFile="logging/testdox.html"/> <testdoxText outputFile="logging/testdox.txt"/> </logging> <source> <include> <directory suffix=".php">src</directory> </include> </source> <php> <env name="APP_KEY" value="AckfSECXIvnK5r28GVIWUAxmbBSjTsmF"/> <env name="DB_CONNECTION" value="testing"/> </php> </phpunit>