mirror of
https://github.com/shlinkio/shlink.git
synced 2024-12-18 17:12:35 +03:00
15 lines
381 B
PHP
Executable file
15 lines
381 B
PHP
Executable file
#!/usr/bin/env php
|
|
<?php
|
|
use Shlinkio\Shlink\CLI\Command\Install\UpdateCommand;
|
|
use Symfony\Component\Console\Application;
|
|
use Zend\Config\Writer\PhpArray;
|
|
|
|
chdir(dirname(__DIR__));
|
|
|
|
require __DIR__ . '/../vendor/autoload.php';
|
|
|
|
$app = new Application();
|
|
$command = new UpdateCommand(new PhpArray());
|
|
$app->add($command);
|
|
$app->setDefaultCommand($command->getName());
|
|
$app->run();
|