first commit

This commit is contained in:
Sven Wappler
2021-04-17 00:26:33 +02:00
commit 866c63cc63
813 changed files with 100696 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<?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']
]
]
];