├── .editorconfig ├── .envrc ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── lint.yml │ ├── phpstan.yml │ ├── run-tests.yml │ └── update-changelog.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json ├── composer.lock ├── docker-compose.yml ├── flake.lock ├── flake.nix ├── justfile ├── phpstan-baseline.neon ├── phpstan-bootstrap.php ├── phpstan.neon.dist ├── phpunit.ids.xml ├── phpunit.xml ├── pint.json ├── src ├── Connection.php ├── Contracts │ └── ArrayStore.php ├── Data │ ├── MetaDTO.php │ ├── ModelMeta.php │ └── QueryMeta.php ├── ElasticClient.php ├── ElasticServiceProvider.php ├── Eloquent │ ├── Builder.php │ ├── Docs │ │ └── ModelDocs.php │ ├── DynamicIndex.php │ ├── ElasticCollection.php │ ├── ElasticsearchModel.php │ ├── GeneratesElasticIds.php │ ├── GeneratesUuids.php │ ├── HybridRelations.php │ ├── Model.php │ └── SoftDeletes.php ├── Exceptions │ ├── BuilderException.php │ ├── BulkInsertQueryException.php │ ├── DynamicIndexException.php │ ├── InvalidFieldTypeException.php │ ├── LaravelElasticsearchException.php │ ├── LogicException.php │ ├── MissingOrderException.php │ ├── ParameterException.php │ ├── QueryException.php │ └── RuntimeException.php ├── Laravel │ ├── Compatibility │ │ ├── Connection │ │ │ └── ConnectionCompatibility.php │ │ └── Schema │ │ │ ├── BlueprintCompatibility.php │ │ │ ├── BuilderCompatibility.php │ │ │ └── GrammarCompatibility.php │ ├── v11 │ │ ├── Connection │ │ │ └── ConnectionCompatibility.php │ │ └── Schema │ │ │ ├── BlueprintCompatibility.php │ │ │ ├── BuilderCompatibility.php │ │ │ └── GrammarCompatibility.php │ └── v12 │ │ ├── Connection │ │ └── ConnectionCompatibility.php │ │ └── Schema │ │ ├── BlueprintCompatibility.php │ │ ├── BuilderCompatibility.php │ │ └── GrammarCompatibility.php ├── Pagination │ └── SearchAfterPaginator.php ├── Query │ ├── Builder.php │ ├── DSL │ │ ├── DslBuilder.php │ │ ├── DslFactory.php │ │ └── QueryCompiler.php │ ├── Grammar.php │ ├── ManagesOptions.php │ ├── Options │ │ ├── ClauseOptions.php │ │ ├── DateOptions.php │ │ ├── FuzzyOptions.php │ │ ├── MatchOptions.php │ │ ├── NestedOptions.php │ │ ├── PhraseOptions.php │ │ ├── PhrasePrefixOptions.php │ │ ├── PrefixOptions.php │ │ ├── QueryOptions.php │ │ ├── QueryStringOptions.php │ │ ├── RegexOptions.php │ │ ├── SearchOptions.php │ │ ├── SimpleQueryStringOptions.php │ │ ├── TermOptions.php │ │ └── TermsOptions.php │ └── Processor.php ├── Relations │ ├── BelongsTo.php │ ├── BelongsToMany.php │ ├── HasMany.php │ ├── HasOne.php │ ├── ManagesRefresh.php │ ├── MorphMany.php │ ├── MorphOne.php │ ├── MorphTo.php │ ├── MorphToMany.php │ └── Traits │ │ ├── EloquentBuilder.php │ │ ├── InteractsWithPivotTable.php │ │ └── QueriesRelationships.php ├── Schema │ ├── Blueprint.php │ ├── Builder.php │ ├── Definitions │ │ ├── AnalyzerPropertyDefinition.php │ │ ├── CharFilterPropertyDefinition.php │ │ ├── FilterPropertyDefinition.php │ │ ├── FluentDefinitions.php │ │ ├── NormalizerPropertyDefinition.php │ │ ├── PropertyDefinition.php │ │ └── TokenizerPropertyDefinition.php │ ├── Grammars │ │ └── Grammar.php │ ├── ManagesDefaultMigrations.php │ ├── ManagesElasticMigrations.php │ └── Schema.php ├── Solutions │ └── DynamicIndexSolution.php ├── Traits │ ├── HasOptions.php │ └── Makeable.php └── Utils │ ├── ArrayStore.php │ ├── Helpers.php │ ├── Sanitizer.php │ ├── TimeBasedUUIDGenerator.php │ └── Timer.php ├── tests ├── ArchitectureTest.php ├── Benchmarks │ └── UuidBenchmarks.php ├── ConnectionTest.php ├── CreateOpTypeTest.php ├── DynamicIndicesTest.php ├── ExceptionTest.php ├── Factories │ ├── Helpers.php │ └── ProductFactory.php ├── GeospatialTest.php ├── HybridRelationsTest.php ├── LargeRecordsTest.php ├── LimitTest.php ├── ModelTest.php ├── Models │ ├── Address.php │ ├── Birthday.php │ ├── Book.php │ ├── Client.php │ ├── Experience.php │ ├── Group.php │ ├── Guarded.php │ ├── HiddenAnimal.php │ ├── IdGenerated │ │ ├── Address.php │ │ ├── Birthday.php │ │ ├── Book.php │ │ ├── Client.php │ │ ├── Experience.php │ │ ├── Group.php │ │ ├── Guarded.php │ │ ├── HiddenAnimal.php │ │ ├── Item.php │ │ ├── Label.php │ │ ├── Location.php │ │ ├── PageHit.php │ │ ├── Photo.php │ │ ├── Post.php │ │ ├── Product.php │ │ ├── Role.php │ │ ├── Scoped.php │ │ ├── Skill.php │ │ ├── Soft.php │ │ └── User.php │ ├── Item.php │ ├── Label.php │ ├── Location.php │ ├── MemberStatus.php │ ├── PageHit.php │ ├── Photo.php │ ├── Post.php │ ├── Product.php │ ├── Role.php │ ├── Scoped.php │ ├── Skill.php │ ├── Soft.php │ ├── SqlBook.php │ ├── SqlRole.php │ ├── SqlUser.php │ └── User.php ├── PHPStan │ └── SarifErrorFormatter.php ├── Pest.php ├── PropertyTest.php ├── QueryBuilderBucketAggregationTest.php ├── QueryBuilderMetricsAggregationTest.php ├── QueryBuilderTest.php ├── QueryElasticsearchSpecificTest.php ├── QueryParameterTest.php ├── QueryStringTest.php ├── QueryTest.php ├── ReindexTest.php ├── RelationsTest.php ├── SchemaTest.php ├── TestCase.php └── WithIds │ ├── DynamicIndicesTestWithId.php │ ├── ExceptionTestWithId.php │ ├── GeospatialTestWithId.php │ ├── HybridRelationsTestWithId.php │ ├── ModelTestWithId.php │ ├── PropertyTestWithId.php │ ├── QueryBuilderBucketAggregationTestWithId.php │ ├── QueryBuilderMetricsAggregationTestWithId.php │ ├── QueryBuilderTestWithId.php │ ├── QueryElasticsearchSpecificTestWithId.php │ ├── QueryParameterTestWithId.php │ ├── QueryTestWithId.php │ ├── ReindexTestWithId.php │ ├── RelationsTestWithId.php │ └── SchemaTestWithId.php └── workbench └── app └── Models ├── Avatar.php ├── BlogPost.php ├── Client.php ├── ClientLog.php ├── ClientProfile.php ├── Company.php ├── Person.php ├── Product.php ├── ProductUnsafe.php └── UserProfile.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/.editorconfig -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/.envrc -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/phpstan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/.github/workflows/phpstan.yml -------------------------------------------------------------------------------- /.github/workflows/run-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/.github/workflows/run-tests.yml -------------------------------------------------------------------------------- /.github/workflows/update-changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/.github/workflows/update-changelog.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/composer.lock -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/flake.nix -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/justfile -------------------------------------------------------------------------------- /phpstan-baseline.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/phpstan-baseline.neon -------------------------------------------------------------------------------- /phpstan-bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/phpstan-bootstrap.php -------------------------------------------------------------------------------- /phpstan.neon.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/phpstan.neon.dist -------------------------------------------------------------------------------- /phpunit.ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/phpunit.ids.xml -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/phpunit.xml -------------------------------------------------------------------------------- /pint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/pint.json -------------------------------------------------------------------------------- /src/Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Connection.php -------------------------------------------------------------------------------- /src/Contracts/ArrayStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Contracts/ArrayStore.php -------------------------------------------------------------------------------- /src/Data/MetaDTO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Data/MetaDTO.php -------------------------------------------------------------------------------- /src/Data/ModelMeta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Data/ModelMeta.php -------------------------------------------------------------------------------- /src/Data/QueryMeta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Data/QueryMeta.php -------------------------------------------------------------------------------- /src/ElasticClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/ElasticClient.php -------------------------------------------------------------------------------- /src/ElasticServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/ElasticServiceProvider.php -------------------------------------------------------------------------------- /src/Eloquent/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Eloquent/Builder.php -------------------------------------------------------------------------------- /src/Eloquent/Docs/ModelDocs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Eloquent/Docs/ModelDocs.php -------------------------------------------------------------------------------- /src/Eloquent/DynamicIndex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Eloquent/DynamicIndex.php -------------------------------------------------------------------------------- /src/Eloquent/ElasticCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Eloquent/ElasticCollection.php -------------------------------------------------------------------------------- /src/Eloquent/ElasticsearchModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Eloquent/ElasticsearchModel.php -------------------------------------------------------------------------------- /src/Eloquent/GeneratesElasticIds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Eloquent/GeneratesElasticIds.php -------------------------------------------------------------------------------- /src/Eloquent/GeneratesUuids.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Eloquent/GeneratesUuids.php -------------------------------------------------------------------------------- /src/Eloquent/HybridRelations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Eloquent/HybridRelations.php -------------------------------------------------------------------------------- /src/Eloquent/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Eloquent/Model.php -------------------------------------------------------------------------------- /src/Eloquent/SoftDeletes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Eloquent/SoftDeletes.php -------------------------------------------------------------------------------- /src/Exceptions/BuilderException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Exceptions/BuilderException.php -------------------------------------------------------------------------------- /src/Exceptions/BulkInsertQueryException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Exceptions/BulkInsertQueryException.php -------------------------------------------------------------------------------- /src/Exceptions/DynamicIndexException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Exceptions/DynamicIndexException.php -------------------------------------------------------------------------------- /src/Exceptions/InvalidFieldTypeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Exceptions/InvalidFieldTypeException.php -------------------------------------------------------------------------------- /src/Exceptions/LaravelElasticsearchException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Exceptions/LaravelElasticsearchException.php -------------------------------------------------------------------------------- /src/Exceptions/LogicException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Exceptions/LogicException.php -------------------------------------------------------------------------------- /src/Exceptions/MissingOrderException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Exceptions/MissingOrderException.php -------------------------------------------------------------------------------- /src/Exceptions/ParameterException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Exceptions/ParameterException.php -------------------------------------------------------------------------------- /src/Exceptions/QueryException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Exceptions/QueryException.php -------------------------------------------------------------------------------- /src/Exceptions/RuntimeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Exceptions/RuntimeException.php -------------------------------------------------------------------------------- /src/Laravel/Compatibility/Connection/ConnectionCompatibility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Laravel/Compatibility/Connection/ConnectionCompatibility.php -------------------------------------------------------------------------------- /src/Laravel/Compatibility/Schema/BlueprintCompatibility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Laravel/Compatibility/Schema/BlueprintCompatibility.php -------------------------------------------------------------------------------- /src/Laravel/Compatibility/Schema/BuilderCompatibility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Laravel/Compatibility/Schema/BuilderCompatibility.php -------------------------------------------------------------------------------- /src/Laravel/Compatibility/Schema/GrammarCompatibility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Laravel/Compatibility/Schema/GrammarCompatibility.php -------------------------------------------------------------------------------- /src/Laravel/v11/Connection/ConnectionCompatibility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Laravel/v11/Connection/ConnectionCompatibility.php -------------------------------------------------------------------------------- /src/Laravel/v11/Schema/BlueprintCompatibility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Laravel/v11/Schema/BlueprintCompatibility.php -------------------------------------------------------------------------------- /src/Laravel/v11/Schema/BuilderCompatibility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Laravel/v11/Schema/BuilderCompatibility.php -------------------------------------------------------------------------------- /src/Laravel/v11/Schema/GrammarCompatibility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Laravel/v11/Schema/GrammarCompatibility.php -------------------------------------------------------------------------------- /src/Laravel/v12/Connection/ConnectionCompatibility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Laravel/v12/Connection/ConnectionCompatibility.php -------------------------------------------------------------------------------- /src/Laravel/v12/Schema/BlueprintCompatibility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Laravel/v12/Schema/BlueprintCompatibility.php -------------------------------------------------------------------------------- /src/Laravel/v12/Schema/BuilderCompatibility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Laravel/v12/Schema/BuilderCompatibility.php -------------------------------------------------------------------------------- /src/Laravel/v12/Schema/GrammarCompatibility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Laravel/v12/Schema/GrammarCompatibility.php -------------------------------------------------------------------------------- /src/Pagination/SearchAfterPaginator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Pagination/SearchAfterPaginator.php -------------------------------------------------------------------------------- /src/Query/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Query/Builder.php -------------------------------------------------------------------------------- /src/Query/DSL/DslBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Query/DSL/DslBuilder.php -------------------------------------------------------------------------------- /src/Query/DSL/DslFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Query/DSL/DslFactory.php -------------------------------------------------------------------------------- /src/Query/DSL/QueryCompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Query/DSL/QueryCompiler.php -------------------------------------------------------------------------------- /src/Query/Grammar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Query/Grammar.php -------------------------------------------------------------------------------- /src/Query/ManagesOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Query/ManagesOptions.php -------------------------------------------------------------------------------- /src/Query/Options/ClauseOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Query/Options/ClauseOptions.php -------------------------------------------------------------------------------- /src/Query/Options/DateOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Query/Options/DateOptions.php -------------------------------------------------------------------------------- /src/Query/Options/FuzzyOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Query/Options/FuzzyOptions.php -------------------------------------------------------------------------------- /src/Query/Options/MatchOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Query/Options/MatchOptions.php -------------------------------------------------------------------------------- /src/Query/Options/NestedOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Query/Options/NestedOptions.php -------------------------------------------------------------------------------- /src/Query/Options/PhraseOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Query/Options/PhraseOptions.php -------------------------------------------------------------------------------- /src/Query/Options/PhrasePrefixOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Query/Options/PhrasePrefixOptions.php -------------------------------------------------------------------------------- /src/Query/Options/PrefixOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Query/Options/PrefixOptions.php -------------------------------------------------------------------------------- /src/Query/Options/QueryOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Query/Options/QueryOptions.php -------------------------------------------------------------------------------- /src/Query/Options/QueryStringOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Query/Options/QueryStringOptions.php -------------------------------------------------------------------------------- /src/Query/Options/RegexOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Query/Options/RegexOptions.php -------------------------------------------------------------------------------- /src/Query/Options/SearchOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Query/Options/SearchOptions.php -------------------------------------------------------------------------------- /src/Query/Options/SimpleQueryStringOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Query/Options/SimpleQueryStringOptions.php -------------------------------------------------------------------------------- /src/Query/Options/TermOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Query/Options/TermOptions.php -------------------------------------------------------------------------------- /src/Query/Options/TermsOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Query/Options/TermsOptions.php -------------------------------------------------------------------------------- /src/Query/Processor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Query/Processor.php -------------------------------------------------------------------------------- /src/Relations/BelongsTo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Relations/BelongsTo.php -------------------------------------------------------------------------------- /src/Relations/BelongsToMany.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Relations/BelongsToMany.php -------------------------------------------------------------------------------- /src/Relations/HasMany.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Relations/HasMany.php -------------------------------------------------------------------------------- /src/Relations/HasOne.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Relations/HasOne.php -------------------------------------------------------------------------------- /src/Relations/ManagesRefresh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Relations/ManagesRefresh.php -------------------------------------------------------------------------------- /src/Relations/MorphMany.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Relations/MorphMany.php -------------------------------------------------------------------------------- /src/Relations/MorphOne.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Relations/MorphOne.php -------------------------------------------------------------------------------- /src/Relations/MorphTo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Relations/MorphTo.php -------------------------------------------------------------------------------- /src/Relations/MorphToMany.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Relations/MorphToMany.php -------------------------------------------------------------------------------- /src/Relations/Traits/EloquentBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Relations/Traits/EloquentBuilder.php -------------------------------------------------------------------------------- /src/Relations/Traits/InteractsWithPivotTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Relations/Traits/InteractsWithPivotTable.php -------------------------------------------------------------------------------- /src/Relations/Traits/QueriesRelationships.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Relations/Traits/QueriesRelationships.php -------------------------------------------------------------------------------- /src/Schema/Blueprint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Schema/Blueprint.php -------------------------------------------------------------------------------- /src/Schema/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Schema/Builder.php -------------------------------------------------------------------------------- /src/Schema/Definitions/AnalyzerPropertyDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Schema/Definitions/AnalyzerPropertyDefinition.php -------------------------------------------------------------------------------- /src/Schema/Definitions/CharFilterPropertyDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Schema/Definitions/CharFilterPropertyDefinition.php -------------------------------------------------------------------------------- /src/Schema/Definitions/FilterPropertyDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Schema/Definitions/FilterPropertyDefinition.php -------------------------------------------------------------------------------- /src/Schema/Definitions/FluentDefinitions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Schema/Definitions/FluentDefinitions.php -------------------------------------------------------------------------------- /src/Schema/Definitions/NormalizerPropertyDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Schema/Definitions/NormalizerPropertyDefinition.php -------------------------------------------------------------------------------- /src/Schema/Definitions/PropertyDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Schema/Definitions/PropertyDefinition.php -------------------------------------------------------------------------------- /src/Schema/Definitions/TokenizerPropertyDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Schema/Definitions/TokenizerPropertyDefinition.php -------------------------------------------------------------------------------- /src/Schema/Grammars/Grammar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Schema/Grammars/Grammar.php -------------------------------------------------------------------------------- /src/Schema/ManagesDefaultMigrations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Schema/ManagesDefaultMigrations.php -------------------------------------------------------------------------------- /src/Schema/ManagesElasticMigrations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Schema/ManagesElasticMigrations.php -------------------------------------------------------------------------------- /src/Schema/Schema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Schema/Schema.php -------------------------------------------------------------------------------- /src/Solutions/DynamicIndexSolution.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Solutions/DynamicIndexSolution.php -------------------------------------------------------------------------------- /src/Traits/HasOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Traits/HasOptions.php -------------------------------------------------------------------------------- /src/Traits/Makeable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Traits/Makeable.php -------------------------------------------------------------------------------- /src/Utils/ArrayStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Utils/ArrayStore.php -------------------------------------------------------------------------------- /src/Utils/Helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Utils/Helpers.php -------------------------------------------------------------------------------- /src/Utils/Sanitizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Utils/Sanitizer.php -------------------------------------------------------------------------------- /src/Utils/TimeBasedUUIDGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Utils/TimeBasedUUIDGenerator.php -------------------------------------------------------------------------------- /src/Utils/Timer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/src/Utils/Timer.php -------------------------------------------------------------------------------- /tests/ArchitectureTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/ArchitectureTest.php -------------------------------------------------------------------------------- /tests/Benchmarks/UuidBenchmarks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/Benchmarks/UuidBenchmarks.php -------------------------------------------------------------------------------- /tests/ConnectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/ConnectionTest.php -------------------------------------------------------------------------------- /tests/CreateOpTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/CreateOpTypeTest.php -------------------------------------------------------------------------------- /tests/DynamicIndicesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/DynamicIndicesTest.php -------------------------------------------------------------------------------- /tests/ExceptionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/ExceptionTest.php -------------------------------------------------------------------------------- /tests/Factories/Helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/Factories/Helpers.php -------------------------------------------------------------------------------- /tests/Factories/ProductFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/Factories/ProductFactory.php -------------------------------------------------------------------------------- /tests/GeospatialTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/GeospatialTest.php -------------------------------------------------------------------------------- /tests/HybridRelationsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/HybridRelationsTest.php -------------------------------------------------------------------------------- /tests/LargeRecordsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/LargeRecordsTest.php -------------------------------------------------------------------------------- /tests/LimitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/LimitTest.php -------------------------------------------------------------------------------- /tests/ModelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/ModelTest.php -------------------------------------------------------------------------------- /tests/Models/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/Models/Address.php -------------------------------------------------------------------------------- /tests/Models/Birthday.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/Models/Birthday.php -------------------------------------------------------------------------------- /tests/Models/Book.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/Models/Book.php -------------------------------------------------------------------------------- /tests/Models/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/Models/Client.php -------------------------------------------------------------------------------- /tests/Models/Experience.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/Models/Experience.php -------------------------------------------------------------------------------- /tests/Models/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/Models/Group.php -------------------------------------------------------------------------------- /tests/Models/Guarded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/Models/Guarded.php -------------------------------------------------------------------------------- /tests/Models/HiddenAnimal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/Models/HiddenAnimal.php -------------------------------------------------------------------------------- /tests/Models/IdGenerated/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/Models/IdGenerated/Address.php -------------------------------------------------------------------------------- /tests/Models/IdGenerated/Birthday.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/Models/IdGenerated/Birthday.php -------------------------------------------------------------------------------- /tests/Models/IdGenerated/Book.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/Models/IdGenerated/Book.php -------------------------------------------------------------------------------- /tests/Models/IdGenerated/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/Models/IdGenerated/Client.php -------------------------------------------------------------------------------- /tests/Models/IdGenerated/Experience.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/Models/IdGenerated/Experience.php -------------------------------------------------------------------------------- /tests/Models/IdGenerated/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/Models/IdGenerated/Group.php -------------------------------------------------------------------------------- /tests/Models/IdGenerated/Guarded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/Models/IdGenerated/Guarded.php -------------------------------------------------------------------------------- /tests/Models/IdGenerated/HiddenAnimal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/Models/IdGenerated/HiddenAnimal.php -------------------------------------------------------------------------------- /tests/Models/IdGenerated/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/Models/IdGenerated/Item.php -------------------------------------------------------------------------------- /tests/Models/IdGenerated/Label.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/Models/IdGenerated/Label.php -------------------------------------------------------------------------------- /tests/Models/IdGenerated/Location.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/Models/IdGenerated/Location.php -------------------------------------------------------------------------------- /tests/Models/IdGenerated/PageHit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/Models/IdGenerated/PageHit.php -------------------------------------------------------------------------------- /tests/Models/IdGenerated/Photo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/Models/IdGenerated/Photo.php -------------------------------------------------------------------------------- /tests/Models/IdGenerated/Post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/Models/IdGenerated/Post.php -------------------------------------------------------------------------------- /tests/Models/IdGenerated/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/Models/IdGenerated/Product.php -------------------------------------------------------------------------------- /tests/Models/IdGenerated/Role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/Models/IdGenerated/Role.php -------------------------------------------------------------------------------- /tests/Models/IdGenerated/Scoped.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/Models/IdGenerated/Scoped.php -------------------------------------------------------------------------------- /tests/Models/IdGenerated/Skill.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/Models/IdGenerated/Skill.php -------------------------------------------------------------------------------- /tests/Models/IdGenerated/Soft.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/Models/IdGenerated/Soft.php -------------------------------------------------------------------------------- /tests/Models/IdGenerated/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/Models/IdGenerated/User.php -------------------------------------------------------------------------------- /tests/Models/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/Models/Item.php -------------------------------------------------------------------------------- /tests/Models/Label.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/Models/Label.php -------------------------------------------------------------------------------- /tests/Models/Location.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/Models/Location.php -------------------------------------------------------------------------------- /tests/Models/MemberStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/Models/MemberStatus.php -------------------------------------------------------------------------------- /tests/Models/PageHit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/Models/PageHit.php -------------------------------------------------------------------------------- /tests/Models/Photo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/Models/Photo.php -------------------------------------------------------------------------------- /tests/Models/Post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/Models/Post.php -------------------------------------------------------------------------------- /tests/Models/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/Models/Product.php -------------------------------------------------------------------------------- /tests/Models/Role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/Models/Role.php -------------------------------------------------------------------------------- /tests/Models/Scoped.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/Models/Scoped.php -------------------------------------------------------------------------------- /tests/Models/Skill.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/Models/Skill.php -------------------------------------------------------------------------------- /tests/Models/Soft.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/Models/Soft.php -------------------------------------------------------------------------------- /tests/Models/SqlBook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/Models/SqlBook.php -------------------------------------------------------------------------------- /tests/Models/SqlRole.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/Models/SqlRole.php -------------------------------------------------------------------------------- /tests/Models/SqlUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/Models/SqlUser.php -------------------------------------------------------------------------------- /tests/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/Models/User.php -------------------------------------------------------------------------------- /tests/PHPStan/SarifErrorFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/PHPStan/SarifErrorFormatter.php -------------------------------------------------------------------------------- /tests/Pest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/Pest.php -------------------------------------------------------------------------------- /tests/PropertyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/PropertyTest.php -------------------------------------------------------------------------------- /tests/QueryBuilderBucketAggregationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/QueryBuilderBucketAggregationTest.php -------------------------------------------------------------------------------- /tests/QueryBuilderMetricsAggregationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/QueryBuilderMetricsAggregationTest.php -------------------------------------------------------------------------------- /tests/QueryBuilderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/QueryBuilderTest.php -------------------------------------------------------------------------------- /tests/QueryElasticsearchSpecificTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/QueryElasticsearchSpecificTest.php -------------------------------------------------------------------------------- /tests/QueryParameterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/QueryParameterTest.php -------------------------------------------------------------------------------- /tests/QueryStringTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/QueryStringTest.php -------------------------------------------------------------------------------- /tests/QueryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/QueryTest.php -------------------------------------------------------------------------------- /tests/ReindexTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/ReindexTest.php -------------------------------------------------------------------------------- /tests/RelationsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/RelationsTest.php -------------------------------------------------------------------------------- /tests/SchemaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/SchemaTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/WithIds/DynamicIndicesTestWithId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/WithIds/DynamicIndicesTestWithId.php -------------------------------------------------------------------------------- /tests/WithIds/ExceptionTestWithId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/WithIds/ExceptionTestWithId.php -------------------------------------------------------------------------------- /tests/WithIds/GeospatialTestWithId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/WithIds/GeospatialTestWithId.php -------------------------------------------------------------------------------- /tests/WithIds/HybridRelationsTestWithId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/WithIds/HybridRelationsTestWithId.php -------------------------------------------------------------------------------- /tests/WithIds/ModelTestWithId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/WithIds/ModelTestWithId.php -------------------------------------------------------------------------------- /tests/WithIds/PropertyTestWithId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/WithIds/PropertyTestWithId.php -------------------------------------------------------------------------------- /tests/WithIds/QueryBuilderBucketAggregationTestWithId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/WithIds/QueryBuilderBucketAggregationTestWithId.php -------------------------------------------------------------------------------- /tests/WithIds/QueryBuilderMetricsAggregationTestWithId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/WithIds/QueryBuilderMetricsAggregationTestWithId.php -------------------------------------------------------------------------------- /tests/WithIds/QueryBuilderTestWithId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/WithIds/QueryBuilderTestWithId.php -------------------------------------------------------------------------------- /tests/WithIds/QueryElasticsearchSpecificTestWithId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/WithIds/QueryElasticsearchSpecificTestWithId.php -------------------------------------------------------------------------------- /tests/WithIds/QueryParameterTestWithId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/WithIds/QueryParameterTestWithId.php -------------------------------------------------------------------------------- /tests/WithIds/QueryTestWithId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/WithIds/QueryTestWithId.php -------------------------------------------------------------------------------- /tests/WithIds/ReindexTestWithId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/WithIds/ReindexTestWithId.php -------------------------------------------------------------------------------- /tests/WithIds/RelationsTestWithId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/WithIds/RelationsTestWithId.php -------------------------------------------------------------------------------- /tests/WithIds/SchemaTestWithId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/tests/WithIds/SchemaTestWithId.php -------------------------------------------------------------------------------- /workbench/app/Models/Avatar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/workbench/app/Models/Avatar.php -------------------------------------------------------------------------------- /workbench/app/Models/BlogPost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/workbench/app/Models/BlogPost.php -------------------------------------------------------------------------------- /workbench/app/Models/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/workbench/app/Models/Client.php -------------------------------------------------------------------------------- /workbench/app/Models/ClientLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/workbench/app/Models/ClientLog.php -------------------------------------------------------------------------------- /workbench/app/Models/ClientProfile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/workbench/app/Models/ClientProfile.php -------------------------------------------------------------------------------- /workbench/app/Models/Company.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/workbench/app/Models/Company.php -------------------------------------------------------------------------------- /workbench/app/Models/Person.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/workbench/app/Models/Person.php -------------------------------------------------------------------------------- /workbench/app/Models/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/workbench/app/Models/Product.php -------------------------------------------------------------------------------- /workbench/app/Models/ProductUnsafe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/workbench/app/Models/ProductUnsafe.php -------------------------------------------------------------------------------- /workbench/app/Models/UserProfile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdphilip/laravel-elasticsearch/HEAD/workbench/app/Models/UserProfile.php --------------------------------------------------------------------------------