shlink/bin/update

13 lines
364 B
Text
Raw Normal View History

2016-08-15 10:21:14 +03:00
#!/usr/bin/env php
<?php
declare(strict_types=1);
namespace Shlinkio\Shlink\Installer;
2016-08-15 10:21:14 +03:00
use Symfony\Component\Console\Application;
use Zend\ServiceManager\ServiceLocatorInterface;
2016-08-15 10:21:14 +03:00
/** @var ServiceLocatorInterface $container */
$container = include __DIR__ . '/../config/install-container.php';
$container->build(Application::class, ['isUpdate' => true])->run();