mirror of
https://github.com/shlinkio/shlink.git
synced 2025-03-23 01:58:07 +03:00
12 lines
291 B
PHP
12 lines
291 B
PHP
|
<?php
|
||
|
|
||
|
chdir(dirname(__DIR__));
|
||
|
require 'vendor/autoload.php';
|
||
|
|
||
|
/** @var \Interop\Container\ContainerInterface $container */
|
||
|
$container = require 'config/container.php';
|
||
|
|
||
|
/** @var \Zend\Expressive\Application $app */
|
||
|
$app = $container->get(\Zend\Expressive\Application::class);
|
||
|
$app->run();
|