├── .editorconfig ├── LICENSE.md ├── README.md ├── composer.json └── src ├── ArrayStore.php ├── Engines └── ArrayEngine.php ├── Facades └── Search.php ├── ScoutArrayEngineServiceProvider.php └── Search.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sti3bas/laravel-scout-array-driver/HEAD/.editorconfig -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sti3bas/laravel-scout-array-driver/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sti3bas/laravel-scout-array-driver/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sti3bas/laravel-scout-array-driver/HEAD/composer.json -------------------------------------------------------------------------------- /src/ArrayStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sti3bas/laravel-scout-array-driver/HEAD/src/ArrayStore.php -------------------------------------------------------------------------------- /src/Engines/ArrayEngine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sti3bas/laravel-scout-array-driver/HEAD/src/Engines/ArrayEngine.php -------------------------------------------------------------------------------- /src/Facades/Search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sti3bas/laravel-scout-array-driver/HEAD/src/Facades/Search.php -------------------------------------------------------------------------------- /src/ScoutArrayEngineServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sti3bas/laravel-scout-array-driver/HEAD/src/ScoutArrayEngineServiceProvider.php -------------------------------------------------------------------------------- /src/Search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sti3bas/laravel-scout-array-driver/HEAD/src/Search.php --------------------------------------------------------------------------------