-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.php.example
More file actions
33 lines (33 loc) · 983 Bytes
/
config.php.example
File metadata and controls
33 lines (33 loc) · 983 Bytes
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
<?php
return [
'debug' => true,
'appname' => 'Version Warner',
'database' => [
'driver' => 'pdo_mysql',
'host' => 'localhost',
'username' => '',
'password' => '',
'database' => 'version_warner'
],
// Configuration for Swiftmailer
// see https://silex.symfony.com/doc/2.0/providers/swiftmailer.html
'email' => [
'options' => [
'host' => 'mail.domain.tld',
'port' => 587,
'username' => 'versions@domain.tld',
'password' => 'secret',
// 'tls', 'ssl' or null
'encryption' => 'tls',
// 'plain', 'login', 'cram-md5' or null
'auth_mode' => 'plain'
],
'sender_address' => 'versions@domain.tld',
'sender_name' => 'Version Warner',
// Send all messages here.
// Only works when debug is enabled
'delivery_addresses' => [
// 'debug@domain.tld'
]
]
];