mirror of
https://github.com/shlinkio/shlink.git
synced 2025-03-19 06:31:14 +03:00
11 lines
286 B
PHP
Executable file
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();
|