shlink/bin/install

13 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();