├── CHANGELOG-5.0.md ├── CHANGELOG-5.1.md ├── CHANGELOG-5.2.md ├── CHANGELOG-6.0.md ├── CHANGELOG-7.0.md ├── LICENSE ├── README.md ├── composer.json ├── doc ├── cookbook │ ├── aliased-indexes.md │ ├── attachments.md │ ├── custom-properties.md │ ├── custom-repositories.md │ ├── doctrine-queue-listener.md │ ├── elastica-http-client-configuration.md │ ├── hints-on-result-hydration.md │ ├── http-auth-for-elastica.md │ ├── logging.md │ ├── manual-provider.md │ ├── multiple-connections.md │ ├── populate-events.md │ ├── pre-transform-event.md │ ├── speed-up-populate-command-sqs.md │ └── speed-up-populate-command.md ├── index.md ├── indexes.md ├── provider.md ├── serializer.md ├── setup.md ├── templates.md └── usage.md ├── phpstan-baseline.neon ├── phpstan.dist.neon └── src ├── Command ├── ConsoleProgressLogger.php ├── CreateCommand.php ├── DeleteCommand.php ├── PopulateCommand.php ├── ResetCommand.php ├── ResetTemplatesCommand.php └── SearchCommand.php ├── Configuration ├── ConfigManager.php ├── IndexConfig.php ├── IndexConfigInterface.php ├── IndexConfigTrait.php ├── IndexTemplateConfig.php ├── ManagerInterface.php ├── Source │ ├── ContainerSource.php │ ├── SourceInterface.php │ └── TemplateContainerSource.php └── TypeConfig.php ├── DataCollector └── ElasticaDataCollector.php ├── DependencyInjection ├── Compiler │ ├── ConfigSourcePass.php │ └── IndexPass.php ├── Configuration.php └── FOSElasticaExtension.php ├── Doctrine ├── AbstractElasticaToModelTransformer.php ├── ConditionalUpdate.php ├── Listener.php ├── MongoDB │ └── ElasticaToModelTransformer.php ├── MongoDBPagerProvider.php ├── ORM │ └── ElasticaToModelTransformer.php ├── ORMPagerProvider.php ├── PHPCR │ └── ElasticaToModelTransformer.php ├── PHPCRPagerProvider.php ├── RegisterListenersService.php └── RepositoryManager.php ├── Elastica ├── Client.php ├── Index.php ├── IndexTemplate.php └── NodePool │ ├── RoundRobinNoResurrect.php │ └── RoundRobinResurrect.php ├── Event ├── AbstractIndexEvent.php ├── AbstractIndexPopulateEvent.php ├── AbstractIndexResetEvent.php ├── AbstractTransformEvent.php ├── ElasticaRequestExceptionEvent.php ├── PostElasticaRequestEvent.php ├── PostIndexMappingBuildEvent.php ├── PostIndexPopulateEvent.php ├── PostIndexResetEvent.php ├── PostTransformEvent.php ├── PreElasticaRequestEvent.php ├── PreIndexPopulateEvent.php ├── PreIndexResetEvent.php └── PreTransformEvent.php ├── EventListener └── PopulateListener.php ├── Exception └── AliasIsIndexException.php ├── FOSElasticaBundle.php ├── Finder ├── FinderInterface.php ├── HybridFinderInterface.php ├── PaginatedFinderInterface.php ├── PaginatedHybridFinderInterface.php ├── PaginatedRawFinderInterface.php ├── RawFinderInterface.php └── TransformedFinder.php ├── HybridResult.php ├── Index ├── AliasProcessor.php ├── IndexManager.php ├── IndexTemplateManager.php ├── MappingBuilder.php ├── Resetter.php ├── ResetterInterface.php └── TemplateResetter.php ├── Logger └── ElasticaLogger.php ├── Manager ├── RepositoryManager.php └── RepositoryManagerInterface.php ├── Message ├── AsyncPersistPage.php └── Handler │ └── AsyncPersistPageHandler.php ├── Paginator ├── FantaPaginatorAdapter.php ├── HybridPaginatorAdapter.php ├── HybridPartialResults.php ├── PaginatorAdapterInterface.php ├── PartialResultsInterface.php ├── RawPaginatorAdapter.php ├── RawPartialResults.php ├── TransformedPaginatorAdapter.php └── TransformedPartialResults.php ├── Persister ├── AsyncPagerPersister.php ├── Event │ ├── OnExceptionEvent.php │ ├── PersistEvent.php │ ├── PostAsyncInsertObjectsEvent.php │ ├── PostInsertObjectsEvent.php │ ├── PostPersistEvent.php │ ├── PreFetchObjectsEvent.php │ ├── PreInsertObjectsEvent.php │ └── PrePersistEvent.php ├── InPlacePagerPersister.php ├── Listener │ └── FilterObjectsListener.php ├── ObjectPersister.php ├── ObjectPersisterInterface.php ├── ObjectSerializerPersister.php ├── PagerPersisterInterface.php ├── PagerPersisterRegistry.php └── PersisterRegistry.php ├── Provider ├── Indexable.php ├── IndexableInterface.php ├── PagerInterface.php ├── PagerProviderInterface.php ├── PagerProviderRegistry.php └── PagerfantaPager.php ├── Repository.php ├── Resources ├── config │ ├── commands.xml │ ├── config.xml │ ├── event_listener.xml │ ├── index.xml │ ├── messenger.xml │ ├── mongodb.xml │ ├── orm.xml │ ├── persister.xml │ ├── phpcr.xml │ ├── provider.xml │ ├── serializer.xml │ ├── source.xml │ └── transformer.xml └── views │ └── Collector │ ├── elastica.html.twig │ └── icon.svg ├── Serializer └── Callback.php ├── Subscriber └── PaginateElasticaQuerySubscriber.php ├── Test └── ClientLocator.php └── Transformer ├── AbstractElasticaToModelTransformer.php ├── ElasticaToModelTransformerInterface.php ├── HighlightableModelInterface.php ├── ModelToElasticaAutoTransformer.php ├── ModelToElasticaIdentifierTransformer.php └── ModelToElasticaTransformerInterface.php /CHANGELOG-5.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/CHANGELOG-5.0.md -------------------------------------------------------------------------------- /CHANGELOG-5.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/CHANGELOG-5.1.md -------------------------------------------------------------------------------- /CHANGELOG-5.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/CHANGELOG-5.2.md -------------------------------------------------------------------------------- /CHANGELOG-6.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/CHANGELOG-6.0.md -------------------------------------------------------------------------------- /CHANGELOG-7.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/CHANGELOG-7.0.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/composer.json -------------------------------------------------------------------------------- /doc/cookbook/aliased-indexes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/doc/cookbook/aliased-indexes.md -------------------------------------------------------------------------------- /doc/cookbook/attachments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/doc/cookbook/attachments.md -------------------------------------------------------------------------------- /doc/cookbook/custom-properties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/doc/cookbook/custom-properties.md -------------------------------------------------------------------------------- /doc/cookbook/custom-repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/doc/cookbook/custom-repositories.md -------------------------------------------------------------------------------- /doc/cookbook/doctrine-queue-listener.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/doc/cookbook/doctrine-queue-listener.md -------------------------------------------------------------------------------- /doc/cookbook/elastica-http-client-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/doc/cookbook/elastica-http-client-configuration.md -------------------------------------------------------------------------------- /doc/cookbook/hints-on-result-hydration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/doc/cookbook/hints-on-result-hydration.md -------------------------------------------------------------------------------- /doc/cookbook/http-auth-for-elastica.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/doc/cookbook/http-auth-for-elastica.md -------------------------------------------------------------------------------- /doc/cookbook/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/doc/cookbook/logging.md -------------------------------------------------------------------------------- /doc/cookbook/manual-provider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/doc/cookbook/manual-provider.md -------------------------------------------------------------------------------- /doc/cookbook/multiple-connections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/doc/cookbook/multiple-connections.md -------------------------------------------------------------------------------- /doc/cookbook/populate-events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/doc/cookbook/populate-events.md -------------------------------------------------------------------------------- /doc/cookbook/pre-transform-event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/doc/cookbook/pre-transform-event.md -------------------------------------------------------------------------------- /doc/cookbook/speed-up-populate-command-sqs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/doc/cookbook/speed-up-populate-command-sqs.md -------------------------------------------------------------------------------- /doc/cookbook/speed-up-populate-command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/doc/cookbook/speed-up-populate-command.md -------------------------------------------------------------------------------- /doc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/doc/index.md -------------------------------------------------------------------------------- /doc/indexes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/doc/indexes.md -------------------------------------------------------------------------------- /doc/provider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/doc/provider.md -------------------------------------------------------------------------------- /doc/serializer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/doc/serializer.md -------------------------------------------------------------------------------- /doc/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/doc/setup.md -------------------------------------------------------------------------------- /doc/templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/doc/templates.md -------------------------------------------------------------------------------- /doc/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/doc/usage.md -------------------------------------------------------------------------------- /phpstan-baseline.neon: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phpstan.dist.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/phpstan.dist.neon -------------------------------------------------------------------------------- /src/Command/ConsoleProgressLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Command/ConsoleProgressLogger.php -------------------------------------------------------------------------------- /src/Command/CreateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Command/CreateCommand.php -------------------------------------------------------------------------------- /src/Command/DeleteCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Command/DeleteCommand.php -------------------------------------------------------------------------------- /src/Command/PopulateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Command/PopulateCommand.php -------------------------------------------------------------------------------- /src/Command/ResetCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Command/ResetCommand.php -------------------------------------------------------------------------------- /src/Command/ResetTemplatesCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Command/ResetTemplatesCommand.php -------------------------------------------------------------------------------- /src/Command/SearchCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Command/SearchCommand.php -------------------------------------------------------------------------------- /src/Configuration/ConfigManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Configuration/ConfigManager.php -------------------------------------------------------------------------------- /src/Configuration/IndexConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Configuration/IndexConfig.php -------------------------------------------------------------------------------- /src/Configuration/IndexConfigInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Configuration/IndexConfigInterface.php -------------------------------------------------------------------------------- /src/Configuration/IndexConfigTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Configuration/IndexConfigTrait.php -------------------------------------------------------------------------------- /src/Configuration/IndexTemplateConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Configuration/IndexTemplateConfig.php -------------------------------------------------------------------------------- /src/Configuration/ManagerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Configuration/ManagerInterface.php -------------------------------------------------------------------------------- /src/Configuration/Source/ContainerSource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Configuration/Source/ContainerSource.php -------------------------------------------------------------------------------- /src/Configuration/Source/SourceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Configuration/Source/SourceInterface.php -------------------------------------------------------------------------------- /src/Configuration/Source/TemplateContainerSource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Configuration/Source/TemplateContainerSource.php -------------------------------------------------------------------------------- /src/Configuration/TypeConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Configuration/TypeConfig.php -------------------------------------------------------------------------------- /src/DataCollector/ElasticaDataCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/DataCollector/ElasticaDataCollector.php -------------------------------------------------------------------------------- /src/DependencyInjection/Compiler/ConfigSourcePass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/DependencyInjection/Compiler/ConfigSourcePass.php -------------------------------------------------------------------------------- /src/DependencyInjection/Compiler/IndexPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/DependencyInjection/Compiler/IndexPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/DependencyInjection/FOSElasticaExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/DependencyInjection/FOSElasticaExtension.php -------------------------------------------------------------------------------- /src/Doctrine/AbstractElasticaToModelTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Doctrine/AbstractElasticaToModelTransformer.php -------------------------------------------------------------------------------- /src/Doctrine/ConditionalUpdate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Doctrine/ConditionalUpdate.php -------------------------------------------------------------------------------- /src/Doctrine/Listener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Doctrine/Listener.php -------------------------------------------------------------------------------- /src/Doctrine/MongoDB/ElasticaToModelTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Doctrine/MongoDB/ElasticaToModelTransformer.php -------------------------------------------------------------------------------- /src/Doctrine/MongoDBPagerProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Doctrine/MongoDBPagerProvider.php -------------------------------------------------------------------------------- /src/Doctrine/ORM/ElasticaToModelTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Doctrine/ORM/ElasticaToModelTransformer.php -------------------------------------------------------------------------------- /src/Doctrine/ORMPagerProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Doctrine/ORMPagerProvider.php -------------------------------------------------------------------------------- /src/Doctrine/PHPCR/ElasticaToModelTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Doctrine/PHPCR/ElasticaToModelTransformer.php -------------------------------------------------------------------------------- /src/Doctrine/PHPCRPagerProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Doctrine/PHPCRPagerProvider.php -------------------------------------------------------------------------------- /src/Doctrine/RegisterListenersService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Doctrine/RegisterListenersService.php -------------------------------------------------------------------------------- /src/Doctrine/RepositoryManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Doctrine/RepositoryManager.php -------------------------------------------------------------------------------- /src/Elastica/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Elastica/Client.php -------------------------------------------------------------------------------- /src/Elastica/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Elastica/Index.php -------------------------------------------------------------------------------- /src/Elastica/IndexTemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Elastica/IndexTemplate.php -------------------------------------------------------------------------------- /src/Elastica/NodePool/RoundRobinNoResurrect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Elastica/NodePool/RoundRobinNoResurrect.php -------------------------------------------------------------------------------- /src/Elastica/NodePool/RoundRobinResurrect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Elastica/NodePool/RoundRobinResurrect.php -------------------------------------------------------------------------------- /src/Event/AbstractIndexEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Event/AbstractIndexEvent.php -------------------------------------------------------------------------------- /src/Event/AbstractIndexPopulateEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Event/AbstractIndexPopulateEvent.php -------------------------------------------------------------------------------- /src/Event/AbstractIndexResetEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Event/AbstractIndexResetEvent.php -------------------------------------------------------------------------------- /src/Event/AbstractTransformEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Event/AbstractTransformEvent.php -------------------------------------------------------------------------------- /src/Event/ElasticaRequestExceptionEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Event/ElasticaRequestExceptionEvent.php -------------------------------------------------------------------------------- /src/Event/PostElasticaRequestEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Event/PostElasticaRequestEvent.php -------------------------------------------------------------------------------- /src/Event/PostIndexMappingBuildEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Event/PostIndexMappingBuildEvent.php -------------------------------------------------------------------------------- /src/Event/PostIndexPopulateEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Event/PostIndexPopulateEvent.php -------------------------------------------------------------------------------- /src/Event/PostIndexResetEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Event/PostIndexResetEvent.php -------------------------------------------------------------------------------- /src/Event/PostTransformEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Event/PostTransformEvent.php -------------------------------------------------------------------------------- /src/Event/PreElasticaRequestEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Event/PreElasticaRequestEvent.php -------------------------------------------------------------------------------- /src/Event/PreIndexPopulateEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Event/PreIndexPopulateEvent.php -------------------------------------------------------------------------------- /src/Event/PreIndexResetEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Event/PreIndexResetEvent.php -------------------------------------------------------------------------------- /src/Event/PreTransformEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Event/PreTransformEvent.php -------------------------------------------------------------------------------- /src/EventListener/PopulateListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/EventListener/PopulateListener.php -------------------------------------------------------------------------------- /src/Exception/AliasIsIndexException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Exception/AliasIsIndexException.php -------------------------------------------------------------------------------- /src/FOSElasticaBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/FOSElasticaBundle.php -------------------------------------------------------------------------------- /src/Finder/FinderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Finder/FinderInterface.php -------------------------------------------------------------------------------- /src/Finder/HybridFinderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Finder/HybridFinderInterface.php -------------------------------------------------------------------------------- /src/Finder/PaginatedFinderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Finder/PaginatedFinderInterface.php -------------------------------------------------------------------------------- /src/Finder/PaginatedHybridFinderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Finder/PaginatedHybridFinderInterface.php -------------------------------------------------------------------------------- /src/Finder/PaginatedRawFinderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Finder/PaginatedRawFinderInterface.php -------------------------------------------------------------------------------- /src/Finder/RawFinderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Finder/RawFinderInterface.php -------------------------------------------------------------------------------- /src/Finder/TransformedFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Finder/TransformedFinder.php -------------------------------------------------------------------------------- /src/HybridResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/HybridResult.php -------------------------------------------------------------------------------- /src/Index/AliasProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Index/AliasProcessor.php -------------------------------------------------------------------------------- /src/Index/IndexManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Index/IndexManager.php -------------------------------------------------------------------------------- /src/Index/IndexTemplateManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Index/IndexTemplateManager.php -------------------------------------------------------------------------------- /src/Index/MappingBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Index/MappingBuilder.php -------------------------------------------------------------------------------- /src/Index/Resetter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Index/Resetter.php -------------------------------------------------------------------------------- /src/Index/ResetterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Index/ResetterInterface.php -------------------------------------------------------------------------------- /src/Index/TemplateResetter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Index/TemplateResetter.php -------------------------------------------------------------------------------- /src/Logger/ElasticaLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Logger/ElasticaLogger.php -------------------------------------------------------------------------------- /src/Manager/RepositoryManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Manager/RepositoryManager.php -------------------------------------------------------------------------------- /src/Manager/RepositoryManagerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Manager/RepositoryManagerInterface.php -------------------------------------------------------------------------------- /src/Message/AsyncPersistPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Message/AsyncPersistPage.php -------------------------------------------------------------------------------- /src/Message/Handler/AsyncPersistPageHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Message/Handler/AsyncPersistPageHandler.php -------------------------------------------------------------------------------- /src/Paginator/FantaPaginatorAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Paginator/FantaPaginatorAdapter.php -------------------------------------------------------------------------------- /src/Paginator/HybridPaginatorAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Paginator/HybridPaginatorAdapter.php -------------------------------------------------------------------------------- /src/Paginator/HybridPartialResults.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Paginator/HybridPartialResults.php -------------------------------------------------------------------------------- /src/Paginator/PaginatorAdapterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Paginator/PaginatorAdapterInterface.php -------------------------------------------------------------------------------- /src/Paginator/PartialResultsInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Paginator/PartialResultsInterface.php -------------------------------------------------------------------------------- /src/Paginator/RawPaginatorAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Paginator/RawPaginatorAdapter.php -------------------------------------------------------------------------------- /src/Paginator/RawPartialResults.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Paginator/RawPartialResults.php -------------------------------------------------------------------------------- /src/Paginator/TransformedPaginatorAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Paginator/TransformedPaginatorAdapter.php -------------------------------------------------------------------------------- /src/Paginator/TransformedPartialResults.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Paginator/TransformedPartialResults.php -------------------------------------------------------------------------------- /src/Persister/AsyncPagerPersister.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Persister/AsyncPagerPersister.php -------------------------------------------------------------------------------- /src/Persister/Event/OnExceptionEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Persister/Event/OnExceptionEvent.php -------------------------------------------------------------------------------- /src/Persister/Event/PersistEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Persister/Event/PersistEvent.php -------------------------------------------------------------------------------- /src/Persister/Event/PostAsyncInsertObjectsEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Persister/Event/PostAsyncInsertObjectsEvent.php -------------------------------------------------------------------------------- /src/Persister/Event/PostInsertObjectsEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Persister/Event/PostInsertObjectsEvent.php -------------------------------------------------------------------------------- /src/Persister/Event/PostPersistEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Persister/Event/PostPersistEvent.php -------------------------------------------------------------------------------- /src/Persister/Event/PreFetchObjectsEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Persister/Event/PreFetchObjectsEvent.php -------------------------------------------------------------------------------- /src/Persister/Event/PreInsertObjectsEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Persister/Event/PreInsertObjectsEvent.php -------------------------------------------------------------------------------- /src/Persister/Event/PrePersistEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Persister/Event/PrePersistEvent.php -------------------------------------------------------------------------------- /src/Persister/InPlacePagerPersister.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Persister/InPlacePagerPersister.php -------------------------------------------------------------------------------- /src/Persister/Listener/FilterObjectsListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Persister/Listener/FilterObjectsListener.php -------------------------------------------------------------------------------- /src/Persister/ObjectPersister.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Persister/ObjectPersister.php -------------------------------------------------------------------------------- /src/Persister/ObjectPersisterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Persister/ObjectPersisterInterface.php -------------------------------------------------------------------------------- /src/Persister/ObjectSerializerPersister.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Persister/ObjectSerializerPersister.php -------------------------------------------------------------------------------- /src/Persister/PagerPersisterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Persister/PagerPersisterInterface.php -------------------------------------------------------------------------------- /src/Persister/PagerPersisterRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Persister/PagerPersisterRegistry.php -------------------------------------------------------------------------------- /src/Persister/PersisterRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Persister/PersisterRegistry.php -------------------------------------------------------------------------------- /src/Provider/Indexable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Provider/Indexable.php -------------------------------------------------------------------------------- /src/Provider/IndexableInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Provider/IndexableInterface.php -------------------------------------------------------------------------------- /src/Provider/PagerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Provider/PagerInterface.php -------------------------------------------------------------------------------- /src/Provider/PagerProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Provider/PagerProviderInterface.php -------------------------------------------------------------------------------- /src/Provider/PagerProviderRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Provider/PagerProviderRegistry.php -------------------------------------------------------------------------------- /src/Provider/PagerfantaPager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Provider/PagerfantaPager.php -------------------------------------------------------------------------------- /src/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Repository.php -------------------------------------------------------------------------------- /src/Resources/config/commands.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Resources/config/commands.xml -------------------------------------------------------------------------------- /src/Resources/config/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Resources/config/config.xml -------------------------------------------------------------------------------- /src/Resources/config/event_listener.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Resources/config/event_listener.xml -------------------------------------------------------------------------------- /src/Resources/config/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Resources/config/index.xml -------------------------------------------------------------------------------- /src/Resources/config/messenger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Resources/config/messenger.xml -------------------------------------------------------------------------------- /src/Resources/config/mongodb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Resources/config/mongodb.xml -------------------------------------------------------------------------------- /src/Resources/config/orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Resources/config/orm.xml -------------------------------------------------------------------------------- /src/Resources/config/persister.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Resources/config/persister.xml -------------------------------------------------------------------------------- /src/Resources/config/phpcr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Resources/config/phpcr.xml -------------------------------------------------------------------------------- /src/Resources/config/provider.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Resources/config/provider.xml -------------------------------------------------------------------------------- /src/Resources/config/serializer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Resources/config/serializer.xml -------------------------------------------------------------------------------- /src/Resources/config/source.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Resources/config/source.xml -------------------------------------------------------------------------------- /src/Resources/config/transformer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Resources/config/transformer.xml -------------------------------------------------------------------------------- /src/Resources/views/Collector/elastica.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Resources/views/Collector/elastica.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Collector/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Resources/views/Collector/icon.svg -------------------------------------------------------------------------------- /src/Serializer/Callback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Serializer/Callback.php -------------------------------------------------------------------------------- /src/Subscriber/PaginateElasticaQuerySubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Subscriber/PaginateElasticaQuerySubscriber.php -------------------------------------------------------------------------------- /src/Test/ClientLocator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Test/ClientLocator.php -------------------------------------------------------------------------------- /src/Transformer/AbstractElasticaToModelTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Transformer/AbstractElasticaToModelTransformer.php -------------------------------------------------------------------------------- /src/Transformer/ElasticaToModelTransformerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Transformer/ElasticaToModelTransformerInterface.php -------------------------------------------------------------------------------- /src/Transformer/HighlightableModelInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Transformer/HighlightableModelInterface.php -------------------------------------------------------------------------------- /src/Transformer/ModelToElasticaAutoTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Transformer/ModelToElasticaAutoTransformer.php -------------------------------------------------------------------------------- /src/Transformer/ModelToElasticaIdentifierTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Transformer/ModelToElasticaIdentifierTransformer.php -------------------------------------------------------------------------------- /src/Transformer/ModelToElasticaTransformerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSElasticaBundle/HEAD/src/Transformer/ModelToElasticaTransformerInterface.php --------------------------------------------------------------------------------