pdphilip / elasticsearch
An Elasticsearch implementation of Laravel's Eloquent ORM
Installs: 56 693
Dependents: 2
Suggesters: 0
Security: 0
Stars: 110
Watchers: 5
Forks: 22
Open Issues: 0
Requires
- php: ^8.2
- elasticsearch/elasticsearch: ^8.17
- illuminate/container: ^10.0|^11|^12
- illuminate/database: ^10.30|^11|^12
- illuminate/events: ^10.0|^11|^12
- illuminate/support: ^10.0|^11|^12
- spatie/ignition: ^1.15
Requires (Dev)
- doctrine/coding-standard: 12.0.x-dev
- larastan/larastan: ^3
- laravel/pint: ^1.14
- mockery/mockery: ^1.4.4
- nunomaduro/collision: ^8.1.1||^7.10.0
- orchestra/testbench: ^10.1||^9.0.0||^8.22.0
- pestphp/pest: ^3
- pestphp/pest-plugin-arch: ^3
- pestphp/pest-plugin-laravel: ^3
- phpstan/extension-installer: ^1.4
- phpstan/phpstan-deprecation-rules: ^2
- phpstan/phpstan-phpunit: ^2
- dev-main
- 5.x-dev
- v5.0.3
- v5.0.2
- v5.0.1
- v5.0.0
- v5.0.0-RC2
- v5.0.0-RC1
- 4.x-dev
- v4.5.3
- v4.5.2
- v4.5.1
- v4.5.0
- v4.4.1
- v4.4.0
- v4.3.0
- v4.2.0
- v4.1.1
- v4.1.0
- v4.0.4
- v4.0.3
- v4.0.2
- v4.0.1
- v4.0.0
- v3.11.0
- 3.10.x-dev
- v3.10.0
- 3.9.x-dev
- v3.9.4
- v3.9.3
- v3.9.2
- v3.9.1
- v3.9.0
- 3.8.x-dev
- v3.8.4
- v3.8.3
- v3.8.2
- v3.8.1
- v3.8.0
- v2.10.7
- v2.10.6
- v2.10.5
- v2.10.4
- v2.10.3
- v2.10.2
- v2.10.1
- v2.10.0
- 2.9.x-dev
- v2.9.9
- v2.9.8
- v2.9.7
- v2.9.6
- v2.9.5
- v2.9.4
- v2.9.3
- v2.9.2
- v2.9.1
- v2.9.0
- 2.8.x-dev
- v2.8.7
- v2.8.6
- v2.8.5
- v2.8.4
- v2.8.3
- v2.8.2
- v2.8.1
- v2.8.0
- 2.7.x-dev
- v2.7.7
- v2.7.6
- v2.7.5
- v2.7.4
- v2.7.3
- v2.7.2
- v2.7.1
- v2.7.0
- 2.6.x-dev
- v2.6.4
- v2.6.3
- v2.6.2
- v2.6.1
- v2.6.0
- 1.9.x-dev
- v1.9.3
- v1.9.2
- v1.9.1
- v1.9.0
- 1.8.x-dev
- v1.8.2
- v1.8.1
- v1.8.0
- 1.7.x-dev
- v1.7.1
- v1.7.0
- 1.6.x-dev
- v1.6.2
- v1.6.1
- v1.6.0
- v0.9.2
- v0.9.1
- 0.8.x-dev
- v0.8.2
- v0.8.1
- v0.8-alpha
- 0.7.x-dev
- v0.7.2
- v0.7.1
- v0.7-alpha
- 0.6.x-dev
- v0.6.2
- v0.6.1
- v0.6-alpha
- dev-dev-main
- dev-github-actions
- dev-collection-exp
- dev-dev-l9
- dev-dev-l8
This package is auto-updated.
Last update: 2025-03-28 21:44:27 UTC
README
Laravel-Elasticsearch
An Elasticsearch implementation of Laravel's Eloquent ORM
The Power of Elasticsearch with Laravel's Eloquent
This package extends Laravel's Eloquent model and query builder with seamless integration of Elasticsearch functionalities. Designed to feel native to Laravel, this package enables you to work with Eloquent models while leveraging the powerful search and analytics capabilities of Elasticsearch.
The Eloquent you already know:
UserLog::where('created_at','>=',Carbon::now()->subDays(30))->get();
UserLog::create([ 'user_id' => '2936adb0-b10d-11ed-8e03-0b234bda3e12', 'ip' => '62.182.98.146', 'location' => [40.7185,-74.0025], 'country_code' => 'US', 'status' => 1, ]);
UserLog::where('status', 1)->update(['status' => 4]);
UserLog::where('status', 4)->orderByDesc('created_at')->paginate(50);
UserProfile::whereIn('country_code',['US','CA']) ->orderByDesc('last_login')->take(10)->get();
UserProfile::where('state','unsubscribed') ->where('updated_at','<=',Carbon::now()->subDays(90))->delete();
Elasticsearch with Eloquent:
UserProfile::searchTerm('Laravel')->orSearchTerm('Elasticsearch')->get();
UserProfile::searchPhrasePrefix('loves espressos and t')->highlight()->get();
UserProfile::whereMatch('bio', 'PHP')->get();
UserLog::whereGeoDistance('location', '10km', [40.7185,-74.0025])->get();
UserProfile::whereFuzzy('description', 'qick brwn fx')->get();
Built in Relationships (even to SQL models):
UserLog::where('status', 1)->orderByDesc('created_at')->with('user')->get();
Read the Documentation
Installation
Maintained versions (Elasticsearch 8.x):
Laravel 10.x, 11.x & 12.x (main):
composer require pdphilip/elasticsearch
Laravel Version | Command | Maintained |
---|---|---|
Laravel 10/11/12 | composer require pdphilip/elasticsearch:~5 |
✅ Active |
Laravel 10/11 (v4) | composer require pdphilip/elasticsearch:~4 |
🛠️ LTS |
Laravel 9 | composer require pdphilip/elasticsearch:~3.9 |
🛠️ LTS |
Laravel 8 | composer require pdphilip/elasticsearch:~3.8 |
🛠️ LTS |
Unmaintained versions (Elasticsearch 8.x):
Laravel Version | Command | Maintained |
---|---|---|
Laravel 7.x | composer require pdphilip/elasticsearch:~2.7 |
❌ EOL |
Laravel 6.x (5.8) | composer require pdphilip/elasticsearch:~2.6 |
❌ EOL |
Unmaintained versions (Elasticsearch 7.x):
Laravel Version | Command | Maintained |
---|---|---|
Laravel 9.x | composer require pdphilip/elasticsearch:~1.9 |
❌ EOL |
Laravel 8.x | composer require pdphilip/elasticsearch:~1.8 |
❌ EOL |
Laravel 7.x | composer require pdphilip/elasticsearch:~1.7 |
❌ EOL |
Laravel 6.x (5.8) | composer require pdphilip/elasticsearch:~1.6 |
❌ EOL |
Configuration
- Set up your
.env
with the following Elasticsearch settings:
ES_AUTH_TYPE=http ES_HOSTS="http://localhost:9200" ES_USERNAME= ES_PASSWORD= ES_CLOUD_ID= ES_API_ID= ES_API_KEY= ES_SSL_CA= ES_INDEX_PREFIX=my_app_ # prefix will be added to all indexes created by the package with an underscore # ex: my_app_user_logs for UserLog model ES_SSL_CERT= ES_SSL_CERT_PASSWORD= ES_SSL_KEY= ES_SSL_KEY_PASSWORD= # Options ES_OPT_ID_SORTABLE=false ES_OPT_VERIFY_SSL=true ES_OPT_RETRIES= ES_OPT_META_HEADERS=true ES_ERROR_INDEX= ES_OPT_BYPASS_MAP_VALIDATION=false ES_OPT_DEFAULT_LIMIT=1000
For multiple nodes, pass in as comma-separated:
ES_HOSTS="http://es01:9200,http://es02:9200,http://es03:9200"
Example cloud config .env: (Click to expand)
ES_AUTH_TYPE=cloud ES_HOSTS="https://xxxxx-xxxxxx.es.europe-west1.gcp.cloud.es.io:9243" ES_USERNAME=elastic ES_PASSWORD=XXXXXXXXXXXXXXXXXXXX ES_CLOUD_ID=XXXXX:ZXVyb3BlLXdl.........SQwYzM1YzU5ODI5MTE0NjQ3YmEyNDZlYWUzOGNkN2Q1Yg== ES_API_ID= ES_API_KEY= ES_SSL_CA= ES_INDEX_PREFIX=my_app_ ES_ERROR_INDEX=
- In
config/database.php
, add the elasticsearch connection:
'elasticsearch' => [ 'driver' => 'elasticsearch', 'auth_type' => env('ES_AUTH_TYPE', 'http'), //http or cloud 'hosts' => explode(',', env('ES_HOSTS', 'http://localhost:9200')), 'username' => env('ES_USERNAME', ''), 'password' => env('ES_PASSWORD', ''), 'cloud_id' => env('ES_CLOUD_ID', ''), 'api_id' => env('ES_API_ID', ''), 'api_key' => env('ES_API_KEY', ''), 'ssl_cert' => env('ES_SSL_CA', ''), 'ssl' => [ 'cert' => env('ES_SSL_CERT', ''), 'cert_password' => env('ES_SSL_CERT_PASSWORD', ''), 'key' => env('ES_SSL_KEY', ''), 'key_password' => env('ES_SSL_KEY_PASSWORD', ''), ], 'index_prefix' => env('ES_INDEX_PREFIX', false), 'options' => [ 'bypass_map_validation' => env('ES_OPT_BYPASS_MAP_VALIDATION', false), 'logging' => env('ES_OPT_LOGGING', false), 'ssl_verification' => env('ES_OPT_VERIFY_SSL', true), 'retires' => env('ES_OPT_RETRIES', null), 'meta_header' => env('ES_OPT_META_HEADERS', true), 'default_limit' => env('ES_OPT_DEFAULT_LIMIT', 1000), 'allow_id_sort' => env('ES_OPT_ID_SORTABLE', false), ], ],
3. If packages are not autoloaded, add the service provider:
For Laravel 11 +:
//bootstrap/providers.php <?php return [ App\Providers\AppServiceProvider::class, PDPhilip\Elasticsearch\ElasticServiceProvider::class, ];
For Laravel 10 and below:
//config/app.php 'providers' => [ ... ... PDPhilip\Elasticsearch\ElasticServiceProvider::class, ...
Now, you're all set to use Elasticsearch with Laravel as if it were native to the framework.
Documentation Links
Getting Started
Eloquent
- The Base Model
- Saving Models
- Deleting Models
- Querying Models
- Eloquent Queries
- ES Eloquent Queries
- Cross Fields Search Queries
- Aggregation Queries
- Distinct and GroupBy Queries
- Nested Queries
- Ordering and Pagination
- Chunking
- Dynamic Indices
Relationships
Migrations: Schema/Index
Misc
Credits
License
The MIT License (MIT). Please see License File for more information.