├── README.md ├── composer.json └── src ├── Adapter ├── ElasticSearch.php ├── MeiliSearch.php └── XunSearch.php ├── Command ├── SearchCreateIndexCommand.php ├── SearchDropIndexCommand.php ├── SearchUpdateIndexCommand.php └── ShopwwiSearchCommand.php ├── Exceptions └── XunsearchException.php ├── Facade ├── Search.php └── Str.php ├── Install.php ├── Support ├── Arr.php ├── Collection.php ├── Str.php └── Traits │ ├── Accessable.php │ ├── Arrayable.php │ └── Serializable.php ├── TraitFace ├── SettingsTrait.php └── WhereTrait.php └── config └── plugin └── shopwwi └── search ├── app.php └── command.php /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwwi/webman-search/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwwi/webman-search/HEAD/composer.json -------------------------------------------------------------------------------- /src/Adapter/ElasticSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwwi/webman-search/HEAD/src/Adapter/ElasticSearch.php -------------------------------------------------------------------------------- /src/Adapter/MeiliSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwwi/webman-search/HEAD/src/Adapter/MeiliSearch.php -------------------------------------------------------------------------------- /src/Adapter/XunSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwwi/webman-search/HEAD/src/Adapter/XunSearch.php -------------------------------------------------------------------------------- /src/Command/SearchCreateIndexCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwwi/webman-search/HEAD/src/Command/SearchCreateIndexCommand.php -------------------------------------------------------------------------------- /src/Command/SearchDropIndexCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwwi/webman-search/HEAD/src/Command/SearchDropIndexCommand.php -------------------------------------------------------------------------------- /src/Command/SearchUpdateIndexCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwwi/webman-search/HEAD/src/Command/SearchUpdateIndexCommand.php -------------------------------------------------------------------------------- /src/Command/ShopwwiSearchCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwwi/webman-search/HEAD/src/Command/ShopwwiSearchCommand.php -------------------------------------------------------------------------------- /src/Exceptions/XunsearchException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwwi/webman-search/HEAD/src/Exceptions/XunsearchException.php -------------------------------------------------------------------------------- /src/Facade/Search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwwi/webman-search/HEAD/src/Facade/Search.php -------------------------------------------------------------------------------- /src/Facade/Str.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwwi/webman-search/HEAD/src/Facade/Str.php -------------------------------------------------------------------------------- /src/Install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwwi/webman-search/HEAD/src/Install.php -------------------------------------------------------------------------------- /src/Support/Arr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwwi/webman-search/HEAD/src/Support/Arr.php -------------------------------------------------------------------------------- /src/Support/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwwi/webman-search/HEAD/src/Support/Collection.php -------------------------------------------------------------------------------- /src/Support/Str.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwwi/webman-search/HEAD/src/Support/Str.php -------------------------------------------------------------------------------- /src/Support/Traits/Accessable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwwi/webman-search/HEAD/src/Support/Traits/Accessable.php -------------------------------------------------------------------------------- /src/Support/Traits/Arrayable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwwi/webman-search/HEAD/src/Support/Traits/Arrayable.php -------------------------------------------------------------------------------- /src/Support/Traits/Serializable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwwi/webman-search/HEAD/src/Support/Traits/Serializable.php -------------------------------------------------------------------------------- /src/TraitFace/SettingsTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwwi/webman-search/HEAD/src/TraitFace/SettingsTrait.php -------------------------------------------------------------------------------- /src/TraitFace/WhereTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwwi/webman-search/HEAD/src/TraitFace/WhereTrait.php -------------------------------------------------------------------------------- /src/config/plugin/shopwwi/search/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwwi/webman-search/HEAD/src/config/plugin/shopwwi/search/app.php -------------------------------------------------------------------------------- /src/config/plugin/shopwwi/search/command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwwi/webman-search/HEAD/src/config/plugin/shopwwi/search/command.php --------------------------------------------------------------------------------