1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/kanboard_ynh.git synced 2024-09-03 19:36:17 +02:00
kanboard_ynh/sources/app/common.php
2014-12-22 19:15:38 +01:00

16 lines
403 B
PHP

<?php
require 'vendor/autoload.php';
// Include custom config file
if (file_exists('config.php')) {
require 'config.php';
}
require __DIR__.'/constants.php';
$container = new Pimple\Container;
$container->register(new ServiceProvider\Logging);
$container->register(new ServiceProvider\Database);
$container->register(new ServiceProvider\Event);
$container->register(new ServiceProvider\Mailer);