├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── ---bug-report.md │ └── ---feature-request.md └── workflows │ ├── code-style.yml │ ├── stale.yml │ ├── static-analysis.yml │ └── test.yml ├── .gitignore ├── .php-cs-fixer.dist.php ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── composer.json ├── phpstan.neon.dist ├── phpunit.xml.dist ├── src ├── Client.php ├── Documents │ ├── Document.php │ ├── DocumentManager.php │ └── Routing.php ├── Exceptions │ ├── BulkOperationException.php │ └── RawResultReadOnlyException.php ├── Indices │ ├── Alias.php │ ├── Index.php │ ├── IndexManager.php │ ├── Mapping.php │ ├── MappingProperties.php │ └── Settings.php └── Search │ ├── Aggregation.php │ ├── Bucket.php │ ├── Explanation.php │ ├── Highlight.php │ ├── Hit.php │ ├── PointInTimeManager.php │ ├── RawResult.php │ ├── SearchParameters.php │ ├── SearchResult.php │ └── Suggestion.php └── tests ├── Extensions └── BypassFinals.php └── Unit ├── Documents ├── DocumentManagerTest.php ├── DocumentTest.php └── RoutingTest.php ├── Exceptions └── BulkOperationExceptionTest.php ├── Indices ├── AliasTest.php ├── IndexManagerTest.php ├── IndexTest.php ├── MappingPropertiesTest.php ├── MappingTest.php └── SettingsTest.php └── Search ├── AggregationTest.php ├── BucketTest.php ├── ExplanationTest.php ├── HighlightTest.php ├── HitTest.php ├── PointInTimeManagerTest.php ├── SearchParametersTest.php ├── SearchResultTest.php └── SuggestionTest.php /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/---bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/.github/ISSUE_TEMPLATE/---bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/---feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/.github/ISSUE_TEMPLATE/---feature-request.md -------------------------------------------------------------------------------- /.github/workflows/code-style.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/.github/workflows/code-style.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/static-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/.github/workflows/static-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/composer.json -------------------------------------------------------------------------------- /phpstan.neon.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/phpstan.neon.dist -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/src/Client.php -------------------------------------------------------------------------------- /src/Documents/Document.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/src/Documents/Document.php -------------------------------------------------------------------------------- /src/Documents/DocumentManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/src/Documents/DocumentManager.php -------------------------------------------------------------------------------- /src/Documents/Routing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/src/Documents/Routing.php -------------------------------------------------------------------------------- /src/Exceptions/BulkOperationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/src/Exceptions/BulkOperationException.php -------------------------------------------------------------------------------- /src/Exceptions/RawResultReadOnlyException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/src/Exceptions/RawResultReadOnlyException.php -------------------------------------------------------------------------------- /src/Indices/Alias.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/src/Indices/Alias.php -------------------------------------------------------------------------------- /src/Indices/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/src/Indices/Index.php -------------------------------------------------------------------------------- /src/Indices/IndexManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/src/Indices/IndexManager.php -------------------------------------------------------------------------------- /src/Indices/Mapping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/src/Indices/Mapping.php -------------------------------------------------------------------------------- /src/Indices/MappingProperties.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/src/Indices/MappingProperties.php -------------------------------------------------------------------------------- /src/Indices/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/src/Indices/Settings.php -------------------------------------------------------------------------------- /src/Search/Aggregation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/src/Search/Aggregation.php -------------------------------------------------------------------------------- /src/Search/Bucket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/src/Search/Bucket.php -------------------------------------------------------------------------------- /src/Search/Explanation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/src/Search/Explanation.php -------------------------------------------------------------------------------- /src/Search/Highlight.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/src/Search/Highlight.php -------------------------------------------------------------------------------- /src/Search/Hit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/src/Search/Hit.php -------------------------------------------------------------------------------- /src/Search/PointInTimeManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/src/Search/PointInTimeManager.php -------------------------------------------------------------------------------- /src/Search/RawResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/src/Search/RawResult.php -------------------------------------------------------------------------------- /src/Search/SearchParameters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/src/Search/SearchParameters.php -------------------------------------------------------------------------------- /src/Search/SearchResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/src/Search/SearchResult.php -------------------------------------------------------------------------------- /src/Search/Suggestion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/src/Search/Suggestion.php -------------------------------------------------------------------------------- /tests/Extensions/BypassFinals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/tests/Extensions/BypassFinals.php -------------------------------------------------------------------------------- /tests/Unit/Documents/DocumentManagerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/tests/Unit/Documents/DocumentManagerTest.php -------------------------------------------------------------------------------- /tests/Unit/Documents/DocumentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/tests/Unit/Documents/DocumentTest.php -------------------------------------------------------------------------------- /tests/Unit/Documents/RoutingTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/tests/Unit/Documents/RoutingTest.php -------------------------------------------------------------------------------- /tests/Unit/Exceptions/BulkOperationExceptionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/tests/Unit/Exceptions/BulkOperationExceptionTest.php -------------------------------------------------------------------------------- /tests/Unit/Indices/AliasTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/tests/Unit/Indices/AliasTest.php -------------------------------------------------------------------------------- /tests/Unit/Indices/IndexManagerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/tests/Unit/Indices/IndexManagerTest.php -------------------------------------------------------------------------------- /tests/Unit/Indices/IndexTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/tests/Unit/Indices/IndexTest.php -------------------------------------------------------------------------------- /tests/Unit/Indices/MappingPropertiesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/tests/Unit/Indices/MappingPropertiesTest.php -------------------------------------------------------------------------------- /tests/Unit/Indices/MappingTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/tests/Unit/Indices/MappingTest.php -------------------------------------------------------------------------------- /tests/Unit/Indices/SettingsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/tests/Unit/Indices/SettingsTest.php -------------------------------------------------------------------------------- /tests/Unit/Search/AggregationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/tests/Unit/Search/AggregationTest.php -------------------------------------------------------------------------------- /tests/Unit/Search/BucketTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/tests/Unit/Search/BucketTest.php -------------------------------------------------------------------------------- /tests/Unit/Search/ExplanationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/tests/Unit/Search/ExplanationTest.php -------------------------------------------------------------------------------- /tests/Unit/Search/HighlightTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/tests/Unit/Search/HighlightTest.php -------------------------------------------------------------------------------- /tests/Unit/Search/HitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/tests/Unit/Search/HitTest.php -------------------------------------------------------------------------------- /tests/Unit/Search/PointInTimeManagerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/tests/Unit/Search/PointInTimeManagerTest.php -------------------------------------------------------------------------------- /tests/Unit/Search/SearchParametersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/tests/Unit/Search/SearchParametersTest.php -------------------------------------------------------------------------------- /tests/Unit/Search/SearchResultTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/tests/Unit/Search/SearchResultTest.php -------------------------------------------------------------------------------- /tests/Unit/Search/SuggestionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babenkoivan/elastic-adapter/HEAD/tests/Unit/Search/SuggestionTest.php --------------------------------------------------------------------------------