shlink/bin/update

16 lines
381 B
Text
Raw Normal View History

2016-08-15 10:21:14 +03:00
#!/usr/bin/env php
<?php
use Shlinkio\Shlink\CLI\Command\Install\UpdateCommand;
2016-08-15 10:21:14 +03:00
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());
2016-08-15 10:21:14 +03:00
$app->run();