summaryrefslogtreecommitdiff
path: root/config/app.php
blob: 8037479bb4676a60c5c36330f3322d65bb90b40f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?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,
    ],
];