mirror of
https://github.com/shlinkio/shlink.git
synced 2026-02-28 04:03:12 +08:00
15 lines
221 B
PHP
15 lines
221 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Shlinkio\Shlink\Core\Config\EnvVars;
|
|
|
|
return [
|
|
|
|
'app_options' => [
|
|
'name' => 'Shlink',
|
|
'version' => EnvVars::isDevEnv() ? 'latest' : '%SHLINK_VERSION%',
|
|
],
|
|
|
|
];
|