mirror of
https://github.com/shlinkio/shlink.git
synced 2025-03-19 22:50:56 +03:00
12 lines
286 B
Text
12 lines
286 B
Text
|
#!/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();
|