szurubooru/public_html/api-dispatch.php

14 lines
507 B
PHP
Raw Normal View History

<?php
2014-08-30 15:04:33 +02:00
$start = microtime(true);
define('DS', DIRECTORY_SEPARATOR);
require_once(__DIR__ . DS . '..' . DS . 'vendor' . DS . 'autoload.php');
require_once(__DIR__ . DS . '..' . DS . 'src' . DS . 'AutoLoader.php');
$builder = new \DI\ContainerBuilder();
$builder->setDefinitionCache(new Doctrine\Common\Cache\ArrayCache());
2014-09-02 09:38:12 +02:00
$builder->addDefinitions(__DIR__ . DS . '..' . DS . 'src' . DS . 'di.php');
2014-08-30 15:04:33 +02:00
$container = $builder->build();
$dispatcher = $container->get('Szurubooru\Dispatcher');
$dispatcher->run();