mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-24 05:38:06 +03:00
12 lines
342 B
PHP
Executable file
12 lines
342 B
PHP
Executable file
#!/usr/bin/env php
|
|
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace Shlinkio\Shlink\Installer;
|
|
|
|
use Symfony\Component\Console\Application;
|
|
use Zend\ServiceManager\ServiceLocatorInterface;
|
|
|
|
/** @var ServiceLocatorInterface $container */
|
|
$container = include __DIR__ . '/../config/install-container.php';
|
|
$container->build(Application::class)->run();
|