-
Notifications
You must be signed in to change notification settings - Fork 10
/
secrets.sample.php
46 lines (40 loc) · 1001 Bytes
/
secrets.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
35
36
37
38
39
40
41
42
43
44
45
46
<?php
/**
* DVSA Test Cancellation Check
*
* @category File
* @package DVSATestCheck
* @author Craig Watson <[email protected]>
* @license https://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
* @link https://github.com/craigwatson/dvsa-test-check
*/
// == Personal data
$check_data = array (
'person' => array (
'licence_number' => '',
'application_id' => '',
'latest_date' => '', // Must be YYYY-MM-DD
'earliest_date' => '', // Must be YYYY-MM-DD
'ideal_day' => '', // Must be one of MON, TUE, WED, THU, FRI, SAT or SUN
'email_to' => '',
)
);
// == Proxy
$proxy = array (
'host' => '',
'auth' => ''
);
// == Email from address
$email_from = "[email protected]";
// == Script output directory
$out_dir = ".";
// == License Check Personal data
$licence_data = array (
'person' => array(
'licence_number' => '',
'ni_number' => '',
'postcode' => '',
'email_to' => '',
)
);
?>