mirror of
https://github.com/shlinkio/shlink.git
synced 2024-12-29 02:11:10 -06:00
16 lines
389 B
PHP
Executable File
16 lines
389 B
PHP
Executable File
#!/usr/bin/env php
|
|
<?php
|
|
use Shlinkio\Shlink\CLI\Command\Install\InstallCommand;
|
|
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());
|
|
$app->run();
|