2014-05-14 23:24:20 +10:00
|
|
|
<?php
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Laravel providers
|
|
|
|
*/
|
2016-01-02 16:57:57 +01:00
|
|
|
Illuminate\Broadcasting\BroadcastServiceProvider::class,
|
|
|
|
Illuminate\Bus\BusServiceProvider::class,
|
|
|
|
Illuminate\Cache\CacheServiceProvider::class,
|
|
|
|
Illuminate\Foundation\Providers\ConsoleSupportServiceProvider::class,
|
|
|
|
Illuminate\Routing\ControllerServiceProvider::class,
|
|
|
|
Illuminate\Cookie\CookieServiceProvider::class,
|
|
|
|
Illuminate\Encryption\EncryptionServiceProvider::class,
|
|
|
|
Illuminate\Foundation\Providers\FoundationServiceProvider::class,
|
|
|
|
Illuminate\Hashing\HashServiceProvider::class,
|
|
|
|
Illuminate\Pagination\PaginationServiceProvider::class,
|
|
|
|
Illuminate\Pipeline\PipelineServiceProvider::class,
|
|
|
|
Illuminate\Queue\QueueServiceProvider::class,
|
|
|
|
Illuminate\Redis\RedisServiceProvider::class,
|
|
|
|
Illuminate\Session\SessionServiceProvider::class,
|
|
|
|
Illuminate\Validation\ValidationServiceProvider::class,
|
|
|
|
Illuminate\View\ViewServiceProvider::class,
|
2014-05-14 23:24:20 +10:00
|
|
|
|
|
|
|
/*
|
|
|
|
* October Rain providers
|
|
|
|
*/
|
2016-01-02 16:57:57 +01:00
|
|
|
October\Rain\Foundation\Providers\ArtisanServiceProvider::class,
|
|
|
|
October\Rain\Database\DatabaseServiceProvider::class,
|
2016-03-07 18:46:45 +11:00
|
|
|
October\Rain\Halcyon\HalcyonServiceProvider::class,
|
2016-01-02 16:57:57 +01:00
|
|
|
October\Rain\Filesystem\FilesystemServiceProvider::class,
|
|
|
|
October\Rain\Parse\ParseServiceProvider::class,
|
|
|
|
October\Rain\Html\HtmlServiceProvider::class,
|
|
|
|
October\Rain\Html\UrlServiceProvider::class,
|
|
|
|
October\Rain\Network\NetworkServiceProvider::class,
|
|
|
|
October\Rain\Scaffold\ScaffoldServiceProvider::class,
|
|
|
|
October\Rain\Flash\FlashServiceProvider::class,
|
|
|
|
October\Rain\Mail\MailServiceProvider::class,
|
2014-05-14 23:24:20 +10:00
|
|
|
|
2014-10-18 11:58:50 +02:00
|
|
|
];
|