Migrate config

This commit is contained in:
Lance Pioch 2024-03-23 12:32:10 -04:00
parent 675c289780
commit 08d98581aa

View File

@ -1,15 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<phpunit <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" bootstrap="bootstrap/tests.php" colors="true">
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="bootstrap/tests.php"
colors="true"
>
<coverage>
<include>
<directory suffix=".php">./app</directory>
</include>
</coverage>
<testsuites> <testsuites>
<testsuite name="Integration"> <testsuite name="Integration">
<directory>./tests/Integration</directory> <directory>./tests/Integration</directory>
@ -19,14 +9,19 @@
</testsuite> </testsuite>
</testsuites> </testsuites>
<php> <php>
<env name="APP_ENV" value="testing" /> <env name="APP_ENV" value="testing"/>
<env name="BCRYPT_ROUNDS" value="4" /> <env name="BCRYPT_ROUNDS" value="4"/>
<env name="DB_DATABASE" value="testing" /> <env name="DB_DATABASE" value="testing"/>
<env name="CACHE_STORE" value="array" /> <env name="CACHE_STORE" value="array"/>
<env name="GUZZLE_CONNECT_TIMEOUT" value="1" /> <env name="GUZZLE_CONNECT_TIMEOUT" value="1"/>
<env name="MAIL_MAILER" value="array" /> <env name="MAIL_MAILER" value="array"/>
<env name="SESSION_DRIVER" value="array" /> <env name="SESSION_DRIVER" value="array"/>
<env name="QUEUE_CONNECTION" value="sync" /> <env name="QUEUE_CONNECTION" value="sync"/>
<env name="MAIL_DRIVER" value="array" /> <env name="MAIL_DRIVER" value="array"/>
</php> </php>
<source>
<include>
<directory suffix=".php">./app</directory>
</include>
</source>
</phpunit> </phpunit>