Uh oh!
There was an error while loading. Please reload this page.
This repository was archived by the owner on Jul 28, 2026. It is now read-only.
forked from BookStackApp/BookStack
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
Latest commit
64 lines (64 loc) · 2.74 KB
/
Copy pathphpunit.xml
File metadata and controls
64 lines (64 loc) · 2.74 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?xml version="1.0" encoding="UTF-8"?>
<phpunitxmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false">
<coverage>
<include>
<directorysuffix=".php">app/</directory>
</include>
</coverage>
<testsuites>
<testsuitename="Application Test Suite">
<directory>./tests/</directory>
</testsuite>
</testsuites>
<php>
<servername="APP_ENV"value="testing"/>
<servername="APP_DEBUG"value="false"/>
<servername="APP_LANG"value="en"/>
<servername="APP_THEME"value="none"/>
<servername="APP_AUTO_LANG_PUBLIC"value="true"/>
<servername="APP_URL"value="http://bookstack.dev"/>
<servername="ALLOWED_IFRAME_HOSTS"value=""/>
<servername="CACHE_DRIVER"value="array"/>
<servername="SESSION_DRIVER"value="array"/>
<servername="QUEUE_CONNECTION"value="sync"/>
<servername="DB_CONNECTION"value="mysql_testing"/>
<servername="BCRYPT_ROUNDS"value="4"/>
<servername="MAIL_DRIVER"value="array"/>
<servername="LOG_CHANNEL"value="single"/>
<servername="AUTH_METHOD"value="standard"/>
<servername="DISABLE_EXTERNAL_SERVICES"value="true"/>
<servername="AVATAR_URL"value=""/>
<servername="LDAP_START_TLS"value="false"/>
<servername="LDAP_VERSION"value="3"/>
<servername="SESSION_SECURE_COOKIE"value="null"/>
<servername="STORAGE_TYPE"value="local"/>
<servername="STORAGE_ATTACHMENT_TYPE"value="local"/>
<servername="STORAGE_IMAGE_TYPE"value="local"/>
<servername="GITHUB_APP_ID"value="aaaaaaaaaaaaaa"/>
<servername="GITHUB_APP_SECRET"value="aaaaaaaaaaaaaa"/>
<servername="GITHUB_AUTO_REGISTER"value=""/>
<servername="GITHUB_AUTO_CONFIRM_EMAIL"value=""/>
<servername="GOOGLE_APP_ID"value="aaaaaaaaaaaaaa"/>
<servername="GOOGLE_APP_SECRET"value="aaaaaaaaaaaaaa"/>
<servername="GOOGLE_AUTO_REGISTER"value=""/>
<servername="GOOGLE_AUTO_CONFIRM_EMAIL"value=""/>
<servername="GOOGLE_SELECT_ACCOUNT"value=""/>
<servername="DEBUGBAR_ENABLED"value="false"/>
<servername="SAML2_ENABLED"value="false"/>
<servername="API_REQUESTS_PER_MIN"value="180"/>
<servername="LOG_FAILED_LOGIN_MESSAGE"value=""/>
<servername="LOG_FAILED_LOGIN_CHANNEL"value="testing"/>
<servername="WKHTMLTOPDF"value="false"/>
<servername="APP_DEFAULT_DARK_MODE"value="false"/>
</php>
</phpunit>