Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pterodactyl
GitHub Repository: pterodactyl/panel
Path: blob/1.0-develop/config/compile.php
7382 views
1
<?php
2
3
return [
4
/*
5
|--------------------------------------------------------------------------
6
| Additional Compiled Classes
7
|--------------------------------------------------------------------------
8
|
9
| Here you may specify additional classes to include in the compiled file
10
| generated by the `artisan optimize` command. These should be classes
11
| that are included on basically every request into the application.
12
|
13
*/
14
15
'files' => [
16
],
17
18
/*
19
|--------------------------------------------------------------------------
20
| Compiled File Providers
21
|--------------------------------------------------------------------------
22
|
23
| Here you may list service providers which define a "compiles" function
24
| that returns additional files that should be compiled, providing an
25
| easy way to get common files from any packages you are utilizing.
26
|
27
*/
28
29
'providers' => [
30
],
31
];
32
33