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