shlink/bin/install
2016-08-14 09:09:23 +02:00

11 lines
286 B
PHP
Executable file

#!/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();