PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Packages of Victor John Ukam   Prompt Deck   phpunit.xml   Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Prompt Deck
Organize versioned artificial intelligence promts
Author: By
Last change:
Date: 2 months ago
Size: 1,097 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="vendor/phpunit/phpunit/phpunit.xsd" bootstrap="vendor/autoload.php" colors="true" cacheDirectory=".phpunit.cache" > <testsuites> <testsuite name="Unit"> <directory>tests/Unit</directory> </testsuite> <testsuite name="Feature"> <directory>tests/Feature</directory> </testsuite> <testsuite name="Architecture"> <directory>tests/Architecture</directory> </testsuite> </testsuites> <source> <include> <directory>src</directory> </include> </source> <php> <env name="APP_ENV" value="testing"/> <env name="CACHE_DRIVER" value="array"/> <env name="DB_CONNECTION" value="testing"/> <env name="DB_DATABASE" value=":memory:"/> <env name="PROMPTDECK_CACHE_ENABLED" value="false"/> <env name="PROMPTDECK_TRACKING_ENABLED" value="false"/> </php> </phpunit>