mirror of
https://github.com/shlinkio/shlink.git
synced 2024-12-27 01:11:39 -06:00
20 lines
369 B
PHP
20 lines
369 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use const Shlinkio\Shlink\Core\DEFAULT_SHORT_CODES_LENGTH;
|
|
|
|
return [
|
|
|
|
'url_shortener' => [
|
|
'domain' => [
|
|
'schema' => 'https',
|
|
'hostname' => '',
|
|
],
|
|
'validate_url' => false,
|
|
'visits_webhooks' => [],
|
|
'default_short_codes_length' => DEFAULT_SHORT_CODES_LENGTH,
|
|
],
|
|
|
|
];
|