shlink/bin/update

16 lines
389 B
Plaintext
Raw Normal View History

2016-08-15 02:21:14 -05:00
#!/usr/bin/env php
<?php
use Shlinkio\Shlink\CLI\Command\Install\InstallCommand;
2016-08-15 02:21:14 -05:00
use Symfony\Component\Console\Application;
use Zend\Config\Writer\PhpArray;
chdir(dirname(__DIR__));
require __DIR__ . '/../vendor/autoload.php';
$app = new Application();
$command = new InstallCommand(new PhpArray(), true);
$app->add($command);
$app->setDefaultCommand($command->getName());
2016-08-15 02:21:14 -05:00
$app->run();