shlink/bin/install

12 lines
286 B
Text
Raw Normal View History

#!/usr/bin/env php
<?php
use Shlinkio\Shlink\CLI\Command\Install\InstallCommand;
use Symfony\Component\Console\Application;
require __DIR__ . '/../vendor/autoload.php';
$app = new Application();
$app->add(new InstallCommand());
$app->setDefaultCommand('shlink:install');
$app->run();