-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.sample.php
34 lines (33 loc) · 1.13 KB
/
config.sample.php
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
<?php
return [
'gitBin' => '', // path to git binary
'workDir' => '', // path to working dir with git repository you want to work with
'trackedBranch' => '', // branch against script will check not merged branches
'users' => [ // array of allowed users emails and additional parameters
'someUserName' => [
'name' => '', // name used in mail
'emails' => [ // emails that branches can be pushed by
],
'sendTo' => '[email protected]' // notification for this user will be sent to this email
]
],
'app' => [
'name' => 'Pre-work Email', // app name
'email' => [
'from' => '[email protected]', // From field in all mails
'smtpServer' => 'aspmx.l.google.com',
'port' => 25,
'user' => 'username',
'password' => 'userpassword',
'headers' => [
// list of headers
]
]
],
'log' => [
'path' => '',
'level' => \Monolog\Logger::DEBUG
]
];