mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-25 10:20:18 -06:00
15 lines
219 B
PHP
15 lines
219 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
use function Shlinkio\Shlink\Common\env;
|
|
|
|
return [
|
|
|
|
'app_options' => [
|
|
'name' => 'Shlink',
|
|
'version' => '1.7.0',
|
|
'secret_key' => env('SECRET_KEY'),
|
|
],
|
|
|
|
];
|