2019-02-10 14:57:29 -06:00
|
|
|
<?php
|
2019-10-05 10:26:10 -05:00
|
|
|
|
2019-02-10 14:57:29 -06:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2020-01-04 06:18:28 -06:00
|
|
|
use Shlinkio\Shlink\Installer\Config\Option;
|
2019-02-10 14:57:29 -06:00
|
|
|
|
|
|
|
return [
|
|
|
|
|
2020-01-04 06:18:28 -06:00
|
|
|
'installer' => [
|
|
|
|
'enabled_options' => [
|
2020-04-14 13:30:05 -05:00
|
|
|
Option\Database\DatabaseDriverConfigOption::class,
|
|
|
|
Option\Database\DatabaseNameConfigOption::class,
|
|
|
|
Option\Database\DatabaseHostConfigOption::class,
|
|
|
|
Option\Database\DatabasePortConfigOption::class,
|
|
|
|
Option\Database\DatabaseUserConfigOption::class,
|
|
|
|
Option\Database\DatabasePasswordConfigOption::class,
|
|
|
|
Option\Database\DatabaseSqlitePathConfigOption::class,
|
|
|
|
Option\Database\DatabaseMySqlOptionsConfigOption::class,
|
|
|
|
Option\UrlShortener\ShortDomainHostConfigOption::class,
|
|
|
|
Option\UrlShortener\ShortDomainSchemaConfigOption::class,
|
|
|
|
Option\UrlShortener\ValidateUrlConfigOption::class,
|
|
|
|
Option\Visit\VisitsWebhooksConfigOption::class,
|
|
|
|
Option\Redirect\BaseUrlRedirectConfigOption::class,
|
|
|
|
Option\Redirect\InvalidShortUrlRedirectConfigOption::class,
|
|
|
|
Option\Redirect\Regular404RedirectConfigOption::class,
|
2020-01-04 06:18:28 -06:00
|
|
|
Option\DisableTrackParamConfigOption::class,
|
2020-04-14 13:30:05 -05:00
|
|
|
Option\Visit\CheckVisitsThresholdConfigOption::class,
|
|
|
|
Option\Visit\VisitsThresholdConfigOption::class,
|
2020-01-04 06:18:28 -06:00
|
|
|
Option\BasePathConfigOption::class,
|
2020-04-14 13:30:05 -05:00
|
|
|
Option\Worker\TaskWorkerNumConfigOption::class,
|
|
|
|
Option\Worker\WebWorkerNumConfigOption::class,
|
2020-01-05 10:04:22 -06:00
|
|
|
Option\RedisServersConfigOption::class,
|
2020-04-14 13:30:05 -05:00
|
|
|
Option\UrlShortener\ShortCodeLengthOption::class,
|
2020-04-13 02:38:18 -05:00
|
|
|
Option\Mercure\EnableMercureConfigOption::class,
|
|
|
|
Option\Mercure\MercurePublicUrlConfigOption::class,
|
|
|
|
Option\Mercure\MercureInternalUrlConfigOption::class,
|
|
|
|
Option\Mercure\MercureJwtSecretConfigOption::class,
|
2020-04-30 13:26:00 -05:00
|
|
|
Option\UrlShortener\GeoLiteLicenseKeyConfigOption::class,
|
2019-02-10 14:57:29 -06:00
|
|
|
],
|
|
|
|
|
2020-01-04 06:18:28 -06:00
|
|
|
'installation_commands' => [
|
|
|
|
'db_create_schema' => [
|
|
|
|
'command' => 'bin/cli db:create',
|
|
|
|
],
|
|
|
|
'db_migrate' => [
|
|
|
|
'command' => 'bin/cli db:migrate',
|
|
|
|
],
|
2019-08-06 13:48:48 -05:00
|
|
|
],
|
2019-08-05 03:08:59 -05:00
|
|
|
],
|
|
|
|
|
2019-02-10 14:57:29 -06:00
|
|
|
];
|