-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpreloader_config.php
53 lines (49 loc) · 1.79 KB
/
preloader_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
<?php
/*
|--------------------------------------------------------------------------
| CakePHP Preloader Config | https://github.com/cnizzardini/cakephp-preloader
|--------------------------------------------------------------------------
*/
return [
'PreloaderConfig' => [
/*
|--------------------------------------------------------------------------
| name <string>
|--------------------------------------------------------------------------
|
| The preload file path. (default: ROOT . DS . 'preload.php')
|
*/
'name' => ROOT . DS . 'preload.php',
/*
|--------------------------------------------------------------------------
| app <boolean>
|--------------------------------------------------------------------------
|
| Should your APP files be included in the preloader (default: false)?
|
*/
'app' => false,
/*
|--------------------------------------------------------------------------
| packages <string[]>
|--------------------------------------------------------------------------
|
| An array of composer packages to include in your preloader.
|
| @example ['cakephp/authentication','cakephp/chronos']
*/
'packages' => [],
/*
|--------------------------------------------------------------------------
| plugins <string[]|boolean>
|--------------------------------------------------------------------------
|
| An array of your applications plugins to include in your preloader. To include
| all your plugins set to `true`.
|
| @example ['MyPlugin','MyOtherPlugin']
*/
'plugins' => [],
]
];