### Run Typesense Server for Development Source: https://github.com/typesense/typesense-php/blob/master/README.md Starts a Typesense server instance using Composer scripts, likely in a Dockerized environment. This is useful for local development and testing. ```shell composer run-script typesenseServer ``` -------------------------------- ### Install Typesense PHP Client with Composer Source: https://github.com/typesense/typesense-php/blob/master/README.md Installs the Typesense PHP client and the necessary HTTP client adapter using Composer. This command ensures you have the required packages for interacting with the Typesense API in your PHP project. ```shell composer require php-http/curl-client typesense/typesense-php ``` -------------------------------- ### Run Tests with Docker Compose Source: https://github.com/typesense/typesense-php/blob/master/README.md Sets up and runs tests for the typesense-php client using Docker Compose. It involves starting services, copying a configuration file, and executing the test suite. ```shell docker compose up cp phpunit.xml.dist phpunit.xml composer run-script test ``` -------------------------------- ### Run PHP Linter Source: https://github.com/typesense/typesense-php/blob/master/README.md Executes the linting process for the PHP project using Composer scripts. This helps maintain code quality and adherence to coding standards. ```shell composer run-script lint:fix ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.