PHP Classes

File: phpunit.xml.dist

Recommend this page to a friend!
  Classes of Arda Günsüren   ElevenLabs Laravel   phpunit.xml.dist   Download  
File: phpunit.xml.dist
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: ElevenLabs Laravel
Generate speech from text using the ElevenLabs API
Author: By
Last change:
Date: 11 days ago
Size: 1,128 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.2/phpunit.xsd" backupGlobals="false" bootstrap="vendor/autoload.php" colors="true" processIsolation="false" stopOnFailure="false" executionOrder="random" failOnWarning="true" failOnRisky="true" failOnEmptyTestSuite="true" beStrictAboutOutputDuringTests="true" cacheDirectory=".phpunit.cache" backupStaticProperties="false" > <testsuites> <testsuite name="ArdaGnsrn Test Suite"> <directory>tests</directory> </testsuite> </testsuites> <coverage> <report> <html outputDirectory="build/coverage"/> <text outputFile="build/coverage.txt"/> <clover outputFile="build/logs/clover.xml"/> </report> </coverage> <logging> <junit outputFile="build/report.junit.xml"/> </logging> <source> <include> <directory suffix=".php">./src</directory> </include> </source> </phpunit>