SIGN IN SIGN UP
laravel / framework UNCLAIMED

Laravel is a web application framework with expressive, elegant syntax.

0 0 0 PHP
2015-03-26 14:39:18 -05:00
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
beStrictAboutTestsThatDoNotTestAnything="false"
2015-03-26 14:39:18 -05:00
colors="true"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
cacheDirectory=".phpunit.cache"
backupStaticProperties="false">
2015-03-26 14:39:18 -05:00
<testsuites>
<testsuite name="Laravel Test Suite">
<directory suffix="Test.php">./tests</directory>
</testsuite>
</testsuites>
<extensions>
<bootstrap class="Illuminate\Tests\AfterEachTestExtension" />
</extensions>
<php>
<ini name="date.timezone" value="UTC" />
<ini name="intl.default_locale" value="C.UTF-8" />
2020-07-19 13:45:16 +01:00
<ini name="memory_limit" value="2048M" />
<env name="DB_CONNECTION" value="testing" />
2020-07-19 13:45:16 +01:00
<!--
<env name="REDIS_CLIENT" value="phpredis" />
2020-07-19 13:45:16 +01:00
<env name="REDIS_HOST" value="127.0.0.1" />
<env name="REDIS_PORT" value="6379" />
-->
</php>
2015-03-26 14:39:18 -05:00
</phpunit>