shlink/config/autoload/app_options.global.php

16 lines
269 B
PHP
Raw Normal View History

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