mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-22 08:56:42 -06: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();
|