-
Notifications
You must be signed in to change notification settings - Fork 10
/
settings.php
73 lines (59 loc) · 2.26 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
<?php
return [
/*
|--------------------------------------------------------------------------
| Keys to automagically encrypt and decrypt
|--------------------------------------------------------------------------
|
| This option controls the settings that will automagically be encrypted
| and decrypted by the Super Simple Laravel Settings package. Expects
| an object or array of setting 'keys' to be passed here.
|
*/
'encrypt' => [],
/*
|--------------------------------------------------------------------------
| Keys for fillable settings
|--------------------------------------------------------------------------
|
| This option defines which settings are considered "safe" and should be
| written to the database. You can use ["*"] to make all settings
| fillable. This is unadvisable as any settings will be filled.
|
*/
'fillable' => [],
/*
|--------------------------------------------------------------------------
| Cache settings
|--------------------------------------------------------------------------
|
| This option controls whether key/values are cached or pulled directly
| from the database. If this setting is true, cache is enabled.
| If this setting is false, caching is disabled.
|
*/
'cache' => true,
/*
|--------------------------------------------------------------------------
| Hidden settings
|--------------------------------------------------------------------------
|
| This option controls the settings that are hidden when using the get()
| method without any specific settings. This protects sensitive data
| like API keys or other high-value user data. You can use ["*"]
| to make all settings hidden unless specifically requested.
|
*/
'hidden' => [],
/*
|--------------------------------------------------------------------------
| Keys to cast
|--------------------------------------------------------------------------
|
| This option controls the settings that are cast to native types
| by default. Currently you can choose 'json' or 'boolean' -
| in future, other types will be made available.
|
*/
'cast' => [],
];