mirror of
https://github.com/shlinkio/shlink.git
synced 2024-12-02 16:27:33 +03:00
12 lines
330 B
PHP
12 lines
330 B
PHP
<?php
|
|
use Zend\Expressive\Application;
|
|
use Zend\ServiceManager\ServiceManager;
|
|
|
|
require __DIR__ . '/../vendor/autoload.php';
|
|
|
|
// Build container
|
|
$config = require __DIR__ . '/config.php';
|
|
$container = new ServiceManager($config['services']);
|
|
$container->setService('config', $config);
|
|
|
|
return $container->get(Application::class);
|