mirror of
https://github.com/shlinkio/shlink.git
synced 2025-02-16 18:24:56 -06:00
16 lines
245 B
PHP
16 lines
245 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
use Shlinkio\Shlink\Core\Config\EnvVars;
|
||
|
|
||
|
return [
|
||
|
|
||
|
EnvVars::APP_ENV->value => 'test',
|
||
|
|
||
|
// URL shortener
|
||
|
EnvVars::DEFAULT_DOMAIN->value => 's.test',
|
||
|
EnvVars::IS_HTTPS_ENABLED->value => false,
|
||
|
|
||
|
];
|