<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true"
cacheDirectory=".phpunit.cache"
>
<coverage/>
<testsuites>
    <testsuite name="Default">
        <directory suffix="Test.php">./tests/</directory>
    </testsuite>
</testsuites>
<php>
    <server name="CACHE_DRIVER" value="array"/>
    <env name="DB_CONNECTION" value="testing"/>
</php>
<source>
    <include>
        <directory suffix=".php">./app</directory>
    </include>
</source>
</phpunit>