You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
575 B
PHP
18 lines
575 B
PHP
<?php
|
|
|
|
// Application config
|
|
|
|
return [
|
|
// Service providers
|
|
'providers' => [
|
|
\Engelsystem\Logger\LoggerServiceProvider::class,
|
|
\Engelsystem\Exceptions\ExceptionsServiceProvider::class,
|
|
\Engelsystem\Config\ConfigServiceProvider::class,
|
|
\Engelsystem\Routing\RoutingServiceProvider::class,
|
|
\Engelsystem\Renderer\RendererServiceProvider::class,
|
|
\Engelsystem\Database\DatabaseServiceProvider::class,
|
|
\Engelsystem\Http\RequestServiceProvider::class,
|
|
\Engelsystem\Http\SessionServiceProvider::class,
|
|
],
|
|
];
|