mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-25 18:30:23 -06:00
15 lines
328 B
PHP
Executable File
15 lines
328 B
PHP
Executable File
#!/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);
|