2016-08-15 09:21:14 +02:00
|
|
|
#!/usr/bin/env php
|
|
|
|
|
<?php
|
2018-09-16 18:47:42 +02:00
|
|
|
declare(strict_types=1);
|
2017-12-28 15:52:10 +01:00
|
|
|
|
2019-02-04 20:14:59 +01:00
|
|
|
namespace Shlinkio\Shlink;
|
2016-08-15 09:21:14 +02:00
|
|
|
|
2019-02-17 10:51:22 +01:00
|
|
|
use function chdir;
|
|
|
|
|
use function dirname;
|
|
|
|
|
|
|
|
|
|
chdir(dirname(__DIR__));
|
2019-02-04 20:14:59 +01:00
|
|
|
$run = require __DIR__ . '/../vendor/shlinkio/shlink-installer/bin/run.php';
|
|
|
|
|
$run(true);
|