bytexr/laravel-scout-opensearch

Laravel Scout OpenSearch Engine
70,430 4
Install
composer require bytexr/laravel-scout-opensearch
Latest Version:v2.2.0
License:MIT
Last Updated:Mar 27, 2025
Links: GitHub  ·  Packagist
Maintainer: bytexr

Laravel Scout OpenSearch

Introduction

Laravel Scout OpenSearch simplifies the integration of Laravel Scout with OpenSearch, offering a seamless experience. Additionally, it boasts full compatibility with AWS OpenSearch, enabling hassle-free implementation.

Installation

composer require bytexr/laravel-scout-opensearch

To make the necessary updates, navigate to config/scout.php and add the following code:

return [
    ...

    'opensearch' => [
        'host' => env('OPENSEARCH_HOST', 'https://localhost:9200'),
        'access_key' => env('OPENSEARCH_ACCESS_KEY', 'admin'),
        'secret_key' => env('OPENSEARCH_SECRET_KEY', 'admin'),
        'options' => [
            'ssl_verification' => env('OPENSEARCH_SSL_VERIFICATION', true),
            // Used for AWS
            'sigv4_enabled' => env('OPENSEARCH_SIGV4_ENABLED', false),
            'sigv4_region' =>  env('OPENSEARCH_SIGV4_REGION', 'eu-west-1'),
        ],
    ],

];

Finally, ensure that all required environment variables are set in your .env file, and don't forget to set the SCOUT_DRIVER value to opensearch.

Explicit Mapping

Should you need to specifically define the mapping for your indexes, you can do so by setting the index-settings key in config/scout.php as follows:

return [
    ...
    
    'opensearch' => [
        ...
        'index-settings' => [
            Post::class => [
                'mappings' => [
                    'properties' => [
                        'id' => [
                            'type' => 'text',
                        ],
                        'title' => [
                            'type' => 'text',
                        ],
                    ],
                ],
            ],
        ],
    ]
]

License

Laravel Scout OpenSearch is open-sourced software licensed under the MIT license.

Related Packages

cloudmediasolutions/laravel-scout-opensearch

OpenSearch engine for Laravel Scout

27,248 18
romangrinev/laravel-opensearch-engine

Custom Laravel Scout OpenSearch Engine

20,297 13
zing/laravel-scout-opensearch

Laravel Scout custom engine for OpenSearch

553,286 36
erikwang2013/webman-scout

Scout-style full-text search for Webman, Laravel, ThinkPHP, and Hyperf (Eloquent...

1,516 3
vanry/laravel-scout-tntsearch

包含中文分词的 Laravel Scout TNTSearch 驱动,支持 scws, phpanalysis 和 jieba 分...

11,907 172