-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
45 lines (44 loc) · 1.82 KB
/
phpunit.xml.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertDeprecationsToExceptions="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
>
<testsuites>
<testsuite name="Unit">
<directory suffix="Test.php">./tests/Unit</directory>
</testsuite>
<testsuite name="Controller">
<directory suffix="Test.php">./tests/Controller</directory>
</testsuite>
<testsuite name="Command">
<directory suffix="Test.php">./tests/Command</directory>
</testsuite>
</testsuites>
<coverage includeUncoveredFiles="true">
<include>
<directory suffix=".php">src</directory>
</include>
</coverage>
<php>
<ini name="display_errors" value="1" />
<ini name="error_reporting" value="1" />
<env name="SYMFONY_DEPRECATIONS_HELPER" value="max[self]=0" />
<server name="APP_ENV" value="test" />
<server name="APP_DEBUG" value="false" />
<server name="TWILIO_DSN" value="null://null" />
<server name="VONAGE_DSN" value="null://null" />
<server name="MESSAGEBIRD_DSN" value="null://null" />
<server name="PHONE_VERIFICATION_OTP_LENGTH" value="6" />
<server name="PHONE_VERIFICATION_RATE_LIMIT_INITIATE_PERIOD_SECS" value="86400" />
<server name="PHONE_VERIFICATION_RATE_LIMIT_INITIATE_COUNT" value="5" />
<server name="PHONE_VERIFICATION_RATE_LIMIT_COMPLETE_PERIOD_SECS" value="300" />
<server name="PHONE_VERIFICATION_RATE_LIMIT_COMPLETE_COUNT" value="3" />
</php>
</phpunit>