Files
animethemes-server/config/elastic.migrations.php
T
paranarimasu 8faf07d56f chore: update depdendencies to anticipate Laravel 10 update (#559)
* chore: update depdendencies to anticipate Laravel 10 update

* style: fix StyleCI findings
2023-03-19 23:37:43 -05:00

18 lines
528 B
PHP

<?php
declare(strict_types=1);
return [
'storage' => [
'default_path' => env('ELASTIC_MIGRATIONS_DEFAULT_PATH', base_path('elastic/migrations')),
],
'database' => [
'table' => env('ELASTIC_MIGRATIONS_TABLE', 'elastic_migrations'),
'connection' => env('ELASTIC_MIGRATIONS_CONNECTION'),
],
'prefixes' => [
'index' => env('ELASTIC_MIGRATIONS_INDEX_PREFIX', env('SCOUT_PREFIX', '')),
'alias' => env('ELASTIC_MIGRATIONS_ALIAS_PREFIX', env('SCOUT_PREFIX', '')),
],
];