shlink/config/autoload/app_options.global.php

17 lines
274 B
PHP
Raw Normal View History

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