├── .coveralls.yml ├── .gitignore ├── .phpcs.xml ├── .travis.yml ├── LICENSE ├── README.md ├── azure-pipelines.yml ├── composer.json ├── composer.lock ├── phpunit.xml.dist ├── src └── AzureSearch │ ├── Exception │ ├── ExceptionInterface.php │ └── LengthException.php │ ├── Index.php │ ├── Index │ ├── Field.php │ └── Suggest.php │ └── Service.php └── test └── AzureSearchTest.php /.coveralls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminhirsch/azure-search-php/HEAD/.coveralls.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminhirsch/azure-search-php/HEAD/.gitignore -------------------------------------------------------------------------------- /.phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminhirsch/azure-search-php/HEAD/.phpcs.xml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminhirsch/azure-search-php/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminhirsch/azure-search-php/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminhirsch/azure-search-php/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminhirsch/azure-search-php/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminhirsch/azure-search-php/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminhirsch/azure-search-php/HEAD/composer.lock -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminhirsch/azure-search-php/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/AzureSearch/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminhirsch/azure-search-php/HEAD/src/AzureSearch/Exception/ExceptionInterface.php -------------------------------------------------------------------------------- /src/AzureSearch/Exception/LengthException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminhirsch/azure-search-php/HEAD/src/AzureSearch/Exception/LengthException.php -------------------------------------------------------------------------------- /src/AzureSearch/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminhirsch/azure-search-php/HEAD/src/AzureSearch/Index.php -------------------------------------------------------------------------------- /src/AzureSearch/Index/Field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminhirsch/azure-search-php/HEAD/src/AzureSearch/Index/Field.php -------------------------------------------------------------------------------- /src/AzureSearch/Index/Suggest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminhirsch/azure-search-php/HEAD/src/AzureSearch/Index/Suggest.php -------------------------------------------------------------------------------- /src/AzureSearch/Service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminhirsch/azure-search-php/HEAD/src/AzureSearch/Service.php -------------------------------------------------------------------------------- /test/AzureSearchTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminhirsch/azure-search-php/HEAD/test/AzureSearchTest.php --------------------------------------------------------------------------------