mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 01:24:46 +02:00
8faf07d56f
* chore: update depdendencies to anticipate Laravel 10 update * style: fix StyleCI findings
18 lines
528 B
PHP
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', '')),
|
|
],
|
|
];
|