2017-06-09 02:28:26 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
2017-06-09 11:39:38 +08:00
|
|
|
'name' => 'phpvms',
|
2017-06-09 03:16:50 +08:00
|
|
|
'env' => env('APP_ENV', 'dev'),
|
2017-06-09 02:54:12 +08:00
|
|
|
'debug' => env('APP_DEBUG', true),
|
2017-06-09 02:28:26 +08:00
|
|
|
'url' => env('APP_URL', 'http://localhost'),
|
2017-07-05 02:09:44 +08:00
|
|
|
'version' => '4.0',
|
2017-06-09 02:28:26 +08:00
|
|
|
|
2017-06-21 11:48:16 +08:00
|
|
|
'timezone' => env('APP_TIMEZONE', 'UTC'),
|
|
|
|
'locale' => env('APP_LOCALE', 'en'),
|
2017-06-09 02:28:26 +08:00
|
|
|
'fallback_locale' => 'en',
|
|
|
|
|
|
|
|
'key' => env('APP_KEY'),
|
|
|
|
'cipher' => 'AES-256-CBC',
|
|
|
|
|
2017-12-02 23:19:58 +08:00
|
|
|
'log' => env('APP_LOG', 'daily'),
|
2017-06-09 02:28:26 +08:00
|
|
|
'log_level' => env('APP_LOG_LEVEL', 'debug'),
|
2017-12-02 23:19:58 +08:00
|
|
|
'log_max_files' => env('APP_LOG_MAX_FILES', 7),
|
2017-06-09 02:28:26 +08:00
|
|
|
|
|
|
|
'providers' => [
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Laravel Framework Service Providers...
|
|
|
|
*/
|
|
|
|
Illuminate\Auth\AuthServiceProvider::class,
|
|
|
|
Illuminate\Broadcasting\BroadcastServiceProvider::class,
|
|
|
|
Illuminate\Bus\BusServiceProvider::class,
|
|
|
|
Illuminate\Cache\CacheServiceProvider::class,
|
|
|
|
Illuminate\Foundation\Providers\ConsoleSupportServiceProvider::class,
|
|
|
|
Illuminate\Cookie\CookieServiceProvider::class,
|
|
|
|
Illuminate\Database\DatabaseServiceProvider::class,
|
|
|
|
Illuminate\Encryption\EncryptionServiceProvider::class,
|
|
|
|
Illuminate\Filesystem\FilesystemServiceProvider::class,
|
|
|
|
Illuminate\Foundation\Providers\FoundationServiceProvider::class,
|
|
|
|
Illuminate\Hashing\HashServiceProvider::class,
|
|
|
|
Illuminate\Mail\MailServiceProvider::class,
|
|
|
|
Illuminate\Notifications\NotificationServiceProvider::class,
|
|
|
|
Illuminate\Pagination\PaginationServiceProvider::class,
|
|
|
|
Illuminate\Pipeline\PipelineServiceProvider::class,
|
|
|
|
Illuminate\Queue\QueueServiceProvider::class,
|
|
|
|
Illuminate\Redis\RedisServiceProvider::class,
|
|
|
|
Illuminate\Auth\Passwords\PasswordResetServiceProvider::class,
|
|
|
|
Illuminate\Session\SessionServiceProvider::class,
|
|
|
|
Illuminate\Translation\TranslationServiceProvider::class,
|
|
|
|
Illuminate\Validation\ValidationServiceProvider::class,
|
|
|
|
Illuminate\View\ViewServiceProvider::class,
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Package Service Providers...
|
|
|
|
*/
|
|
|
|
Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider::class,
|
|
|
|
Yajra\Datatables\DatatablesServiceProvider::class,
|
|
|
|
Collective\Html\HtmlServiceProvider::class,
|
|
|
|
Laracasts\Flash\FlashServiceProvider::class,
|
|
|
|
Prettus\Repository\Providers\RepositoryServiceProvider::class,
|
2017-06-11 09:10:31 +08:00
|
|
|
InfyOm\Generator\InfyOmGeneratorServiceProvider::class,
|
2017-06-09 02:28:26 +08:00
|
|
|
InfyOm\AdminLTETemplates\AdminLTETemplatesServiceProvider::class,
|
2017-06-11 09:10:31 +08:00
|
|
|
Zizaco\Entrust\EntrustServiceProvider::class,
|
2017-06-21 04:03:51 +08:00
|
|
|
anlutro\LaravelSettings\ServiceProvider::class,
|
2017-08-15 07:26:20 +08:00
|
|
|
Spatie\Fractal\FractalServiceProvider::class,
|
2017-12-02 11:05:59 +08:00
|
|
|
SebastiaanLuca\Helpers\Methods\GlobalHelpersServiceProvider::class,
|
|
|
|
SebastiaanLuca\Helpers\Collections\CollectionMacrosServiceProvider::class,
|
2017-12-05 05:35:39 +08:00
|
|
|
Toin0u\Geotools\GeotoolsServiceProvider::class,
|
2017-12-07 06:07:25 +08:00
|
|
|
//Jackiedo\Timezonelist\TimezonelistServiceProvider::class,
|
2017-06-11 09:10:31 +08:00
|
|
|
|
2017-06-09 02:28:26 +08:00
|
|
|
/*
|
|
|
|
* Application Service Providers...
|
|
|
|
*/
|
|
|
|
App\Providers\AppServiceProvider::class,
|
2017-06-16 11:45:25 +08:00
|
|
|
App\Providers\BroadcastServiceProvider::class,
|
2017-06-09 02:28:26 +08:00
|
|
|
App\Providers\AuthServiceProvider::class,
|
|
|
|
App\Providers\EventServiceProvider::class,
|
|
|
|
App\Providers\RouteServiceProvider::class,
|
|
|
|
],
|
|
|
|
|
|
|
|
'aliases' => [
|
|
|
|
'App' => Illuminate\Support\Facades\App::class,
|
|
|
|
'Artisan' => Illuminate\Support\Facades\Artisan::class,
|
|
|
|
'Auth' => Illuminate\Support\Facades\Auth::class,
|
|
|
|
'Blade' => Illuminate\Support\Facades\Blade::class,
|
|
|
|
'Cache' => Illuminate\Support\Facades\Cache::class,
|
2017-07-23 10:31:26 +08:00
|
|
|
'Carbon' => \Carbon\Carbon::class,
|
2017-06-09 02:28:26 +08:00
|
|
|
'Config' => Illuminate\Support\Facades\Config::class,
|
|
|
|
'Cookie' => Illuminate\Support\Facades\Cookie::class,
|
|
|
|
'Crypt' => Illuminate\Support\Facades\Crypt::class,
|
|
|
|
'DB' => Illuminate\Support\Facades\DB::class,
|
|
|
|
'Eloquent' => Illuminate\Database\Eloquent\Model::class,
|
2017-06-11 09:10:31 +08:00
|
|
|
'Entrust' => Zizaco\Entrust\EntrustFacade::class,
|
2017-06-09 02:28:26 +08:00
|
|
|
'Event' => Illuminate\Support\Facades\Event::class,
|
|
|
|
'File' => Illuminate\Support\Facades\File::class,
|
2017-08-15 07:26:20 +08:00
|
|
|
'Flash' => Laracasts\Flash\Flash::class,
|
|
|
|
'Form' => Collective\Html\FormFacade::class,
|
|
|
|
'Fractal' => Spatie\Fractal\FractalFacade::class,
|
2017-06-09 02:28:26 +08:00
|
|
|
'Gate' => Illuminate\Support\Facades\Gate::class,
|
2017-08-15 07:26:20 +08:00
|
|
|
'Geotools' => Toin0u\Geotools\Facade\Geotools::class,
|
2017-06-09 02:28:26 +08:00
|
|
|
'Hash' => Illuminate\Support\Facades\Hash::class,
|
2017-08-15 07:26:20 +08:00
|
|
|
'Html' => Collective\Html\HtmlFacade::class,
|
2017-06-09 02:28:26 +08:00
|
|
|
'Lang' => Illuminate\Support\Facades\Lang::class,
|
|
|
|
'Log' => Illuminate\Support\Facades\Log::class,
|
|
|
|
'Mail' => Illuminate\Support\Facades\Mail::class,
|
|
|
|
'Notification' => Illuminate\Support\Facades\Notification::class,
|
|
|
|
'Password' => Illuminate\Support\Facades\Password::class,
|
|
|
|
'Queue' => Illuminate\Support\Facades\Queue::class,
|
|
|
|
'Redirect' => Illuminate\Support\Facades\Redirect::class,
|
|
|
|
'Redis' => Illuminate\Support\Facades\Redis::class,
|
|
|
|
'Request' => Illuminate\Support\Facades\Request::class,
|
|
|
|
'Response' => Illuminate\Support\Facades\Response::class,
|
|
|
|
'Route' => Illuminate\Support\Facades\Route::class,
|
|
|
|
'Schema' => Illuminate\Support\Facades\Schema::class,
|
|
|
|
'Session' => Illuminate\Support\Facades\Session::class,
|
2017-08-15 07:26:20 +08:00
|
|
|
'Setting' => anlutro\LaravelSettings\Facade::class,
|
2017-06-09 02:28:26 +08:00
|
|
|
'Storage' => Illuminate\Support\Facades\Storage::class,
|
|
|
|
'URL' => Illuminate\Support\Facades\URL::class,
|
2017-08-15 07:26:20 +08:00
|
|
|
'Utils' => App\Facades\Utils::class,
|
2017-06-09 02:28:26 +08:00
|
|
|
'Validator' => Illuminate\Support\Facades\Validator::class,
|
|
|
|
'View' => Illuminate\Support\Facades\View::class,
|
2017-06-13 11:48:32 +08:00
|
|
|
'Yaml' => Symfony\Component\Yaml\Yaml::class,
|
2017-06-09 02:28:26 +08:00
|
|
|
],
|
|
|
|
|
|
|
|
];
|