shlink/config/autoload/app_options.global.php

16 lines
273 B
PHP
Raw Normal View History

2016-08-07 07:44:33 -05:00
<?php
2017-10-12 03:13:20 -05:00
declare(strict_types=1);
2017-12-27 08:37:26 -06:00
use function Shlinkio\Shlink\Common\env;
2017-07-16 02:28:40 -05:00
2016-08-07 07:44:33 -05:00
return [
'app_options' => [
'name' => 'Shlink',
'version' => '%SHLINK_VERSION%',
2018-12-06 19:49:50 -06:00
'secret_key' => env('SECRET_KEY', ''),
'disable_track_param' => null,
2016-08-07 07:44:33 -05:00
],
];