-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathconfig.php
78 lines (71 loc) · 2.2 KB
/
config.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
<?php
declare(strict_types=1);
return [
/*
|--------------------------------------------------------------------------
| Path to lookup theme
|--------------------------------------------------------------------------
|
| The root path contains themes collections.
|
*/
'directory' => env('THEMES_DIR', 'themes'),
/*
|--------------------------------------------------------------------------
| Symbolic link path
|--------------------------------------------------------------------------
|
| you can change the public themes path used for assets.
|
*/
'symlink_path' => 'themes',
/*
|--------------------------------------------------------------------------
| Symbolic link relative
|--------------------------------------------------------------------------
|
| Determine if relative symlink should be used instead of absolute one.
|
*/
'symlink_relative' => false,
/*
|--------------------------------------------------------------------------
| Fallback Theme
|--------------------------------------------------------------------------
|
| If you don't set a theme at runtime (through middleware for example)
| the fallback theme will be used automatically.
|
*/
'fallback_theme' => null,
/*
|--------------------------------------------------------------------------
| Caching
|--------------------------------------------------------------------------
|
| Config for caching feature.
|
*/
'cache' => [
'enabled' => false,
'key' => 'themes-manager',
'lifetime' => 86400,
],
/*
|--------------------------------------------------------------------------
| Composer File Template
|--------------------------------------------------------------------------
|
| Config for composer.json file, generated for new theme
| If null then information will be asked at generation process
| If not null, values will be used at generation process
|
*/
'composer' => [
'vendor' => null,
'author' => [
'name' => null,
'email' => null,
],
],
];