2015-02-06 04:39:52 +01:00
|
|
|
<?php
|
2016-10-05 06:52:15 +02:00
|
|
|
/**
|
|
|
|
* compile.php
|
|
|
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
|
|
|
*
|
|
|
|
* This software may be modified and distributed under the terms of the
|
|
|
|
* Creative Commons Attribution-ShareAlike 4.0 International License.
|
|
|
|
*
|
|
|
|
* See the LICENSE file for details.
|
|
|
|
*/
|
2015-02-06 04:39:52 +01:00
|
|
|
|
|
|
|
return [
|
|
|
|
|
2015-06-27 08:06:24 +02:00
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Additional Compiled Classes
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Here you may specify additional classes to include in the compiled file
|
|
|
|
| generated by the `artisan optimize` command. These should be classes
|
|
|
|
| that are included on basically every request into the application.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2016-01-08 15:59:21 +01:00
|
|
|
'files' => [
|
|
|
|
//
|
2015-06-27 08:06:24 +02:00
|
|
|
],
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Compiled File Providers
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Here you may list service providers which define a "compiles" function
|
|
|
|
| that returns additional files that should be compiled, providing an
|
|
|
|
| easy way to get common files from any packages you are utilizing.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
'providers' => [
|
|
|
|
//
|
|
|
|
],
|
2015-02-06 04:39:52 +01:00
|
|
|
|
|
|
|
];
|