21 lines
886 B
PHP
21 lines
886 B
PHP
<?php
|
|
|
|
/** @noinspection PhpFullyQualifiedNameUsageInspection */
|
|
return [
|
|
'frontend' => [
|
|
'apache-solr-for-typo3/page-indexer-fe-user-authenticator' => [
|
|
'target' => \WapplerSystems\Meilisearch\Middleware\FrontendUserAuthenticator::class,
|
|
'before' => ['apache-solr-for-typo3/page-indexer-initialization']
|
|
],
|
|
'apache-solr-for-typo3/page-indexer-initialization' => [
|
|
'target' => \WapplerSystems\Meilisearch\Middleware\PageIndexerInitialization::class,
|
|
'before' => ['typo3/cms-frontend/tsfe'],
|
|
'after' => ['typo3/cms-core/normalized-params-attribute']
|
|
],
|
|
'apache-solr-for-typo3/page-indexer-finisher' => [
|
|
'target' => \WapplerSystems\Meilisearch\Middleware\PageIndexerFinisher::class,
|
|
'after' => ['typo3/cms-frontend/content-length-headers']
|
|
]
|
|
]
|
|
];
|