2016-08-14 02:09:23 -05:00
|
|
|
#!/usr/bin/env php
|
|
|
|
<?php
|
2018-09-16 11:47:42 -05:00
|
|
|
declare(strict_types=1);
|
2017-12-28 08:52:10 -06:00
|
|
|
|
2018-09-29 03:00:17 -05:00
|
|
|
namespace Shlinkio\Shlink\Installer;
|
2016-08-19 08:50:08 -05:00
|
|
|
|
2018-09-29 03:00:17 -05:00
|
|
|
use Symfony\Component\Console\Application;
|
|
|
|
use Zend\ServiceManager\ServiceLocatorInterface;
|
2016-08-19 08:50:08 -05:00
|
|
|
|
2018-09-29 03:00:17 -05:00
|
|
|
/** @var ServiceLocatorInterface $container */
|
|
|
|
$container = include __DIR__ . '/../config/install-container.php';
|
2017-07-05 11:12:03 -05:00
|
|
|
$container->build(Application::class)->run();
|