forked from jeremykenedy/laravel-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.php
executable file
·84 lines (67 loc) · 1.83 KB
/
settings.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?php
return [
/*
* Is email activation required
*/
'app_project_version' => env('APP_PROJECT_VERSION'),
/*
* Is email activation required
*/
'activation' => env('ACTIVATION', false),
/*
* Is email activation required
*/
'timePeriod' => env('ACTIVATION_LIMIT_TIME_PERIOD', 24),
/*
* Is email activation required
*/
'maxAttempts' => env('ACTIVATION_LIMIT_MAX_ATTEMPTS', 3),
/*
* NULL Ip to enter to match database schema
*/
'nullIpAddress' => env('NULL_IP_ADDRESS', '0.0.0.0'),
/*
* User restore encryption type
*/
'restoreUserEncType' => 'AES-256-ECB',
/*
* User restore days past cutoff
*/
'restoreUserCutoff' => env('USER_RESTORE_CUTOFF_DAYS', 31),
/*
* User list pagination size
*/
'userListPaginationSize' => env('USER_LIST_PAGINATION_SIZE', 50),
/*
* User restore encryption key
*/
'restoreKey' => env('USER_RESTORE_ENCRYPTION_KEY', 'sup3rS3cr3tR35t0r3K3y21!'),
/*
* ReCaptcha Status
*/
'reCaptchStatus' => env('ENABLE_RECAPTCHA', false),
/*
* ReCaptcha Site Key
*/
'reCaptchSite' => env('RE_CAP_SITE', 'YOURGOOGLECAPTCHAsitekeyHERE'),
/*
* ReCaptcha Secret
*/
'reCaptchSecret' => env('RE_CAP_SECRET', 'YOURGOOGLECAPTCHAsecretHERE'),
/*
* Google Maps API V3 Status
*/
'googleMapsAPIStatus' => env('GOOGLEMAPS_API_STATUS', false),
/*
* Google Maps API Key
*/
'googleMapsAPIKey' => env('GOOGLEMAPS_API_KEY', 'YOURGOOGLEMAPSkeyHERE'),
/*
* DropZone CDN
*/
'dropZoneJsCDN' => env('DROPZONE_JS_CDN', 'https://cdnjs.cloudflare.com/ajax/libs/dropzone/5.4.0/dropzone.js'),
/*
* Google Analytics
*/
'googleanalyticsId' => env('GOOGLE_ANALYTICS_ID', false),
];