mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-28 17:08:58 +03:00
15 lines
328 B
Text
15 lines
328 B
Text
|
#!/usr/bin/env php
|
||
|
<?php
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace Shlinkio\Shlink;
|
||
|
|
||
|
use Shlinkio\Shlink\Installer\Command\SetOptionCommand;
|
||
|
|
||
|
use function chdir;
|
||
|
use function dirname;
|
||
|
|
||
|
chdir(dirname(__DIR__));
|
||
|
[,, $installer] = require __DIR__ . '/../vendor/shlinkio/shlink-installer/bin/run.php';
|
||
|
$installer(SetOptionCommand::NAME);
|