> For the complete documentation index, see [llms.txt](https://docs.sonsofphp.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.sonsofphp.com/components/http-message.md). # Http Message Simple PSR-7 Compatible Http Message Component ## Installation ```shell composer require sonsofphp/http-message ``` ## Usage ### Uri ```php withQueryParams([ 'page' => 1, 'limit' => 25, 'filters' => [ 'isActive' => 1, ] ]); // To remove all the query parameters, pass in `null` $uri = $uri->withQueryParams(null); ```