├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── MAINTAINERS.md ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src ├── Console │ ├── AlgoliaCommand.php │ ├── BackupCommand.php │ └── PushCommand.php ├── IndexResourceRepository.php └── ServiceProvider.php └── tests ├── Algolia └── Settings │ ├── Console │ ├── BackupCommandTest.php │ └── PushCommandTest.php │ └── IndexResourceRepositoryTest.php ├── TestModel.php └── TestModelWithSearchableTrait.php /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/laravel-scout-settings/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/laravel-scout-settings/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /build 3 | /vendor 4 | /coverage 5 | composer.lock 6 | .DS_Store -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/laravel-scout-settings/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/laravel-scout-settings/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/laravel-scout-settings/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/laravel-scout-settings/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/laravel-scout-settings/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/laravel-scout-settings/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/laravel-scout-settings/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Console/AlgoliaCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/laravel-scout-settings/HEAD/src/Console/AlgoliaCommand.php -------------------------------------------------------------------------------- /src/Console/BackupCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/laravel-scout-settings/HEAD/src/Console/BackupCommand.php -------------------------------------------------------------------------------- /src/Console/PushCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/laravel-scout-settings/HEAD/src/Console/PushCommand.php -------------------------------------------------------------------------------- /src/IndexResourceRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/laravel-scout-settings/HEAD/src/IndexResourceRepository.php -------------------------------------------------------------------------------- /src/ServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/laravel-scout-settings/HEAD/src/ServiceProvider.php -------------------------------------------------------------------------------- /tests/Algolia/Settings/Console/BackupCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/laravel-scout-settings/HEAD/tests/Algolia/Settings/Console/BackupCommandTest.php -------------------------------------------------------------------------------- /tests/Algolia/Settings/Console/PushCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/laravel-scout-settings/HEAD/tests/Algolia/Settings/Console/PushCommandTest.php -------------------------------------------------------------------------------- /tests/Algolia/Settings/IndexResourceRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/laravel-scout-settings/HEAD/tests/Algolia/Settings/IndexResourceRepositoryTest.php -------------------------------------------------------------------------------- /tests/TestModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/laravel-scout-settings/HEAD/tests/TestModel.php -------------------------------------------------------------------------------- /tests/TestModelWithSearchableTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algolia/laravel-scout-settings/HEAD/tests/TestModelWithSearchableTrait.php --------------------------------------------------------------------------------