v1.0.2 2025-01-22 15:33 UTC

This package is auto-updated.

Last update: 2025-03-22 15:52:27 UTC


README

Adds/removes/updates query string of current request uri, accepts Laravel's array "dot" notation

Installation

You can install the package via composer:

composer require vitnasinec/uri

Usage

// https://domain.test/page?filter[foo]=bar&sort=-baz

uri()->addQuery('filter.other', 'next');
// https://domain.test/page?filter[foo]=bar&filter[other]=next&sort=-baz

uri('http://different.test/other?filter[other]=previous')->addQuery('filter.other', 'next');
// http://different.test/other?filter[other]=next

uri()->removeQuery('filter.foo')
// https://domain.test/page?sort=-baz

uri()->mergeQuery(['filter.foo' => 'changed', 'filter.other' => 'next']);
// https://domain.test/page?filter[foo]=changed&filter[other]=next&sort=-baz

uri()->mergeMissingQuery(['filter.foo' => 'skipped', 'filter.added' => true]);
// https://domain.test/page?filter[foo]=changed&filter[other]=next&sort=-baz

Testing

composer test

Changelog

Please see CHANGELOG for more information what has changed recently.

License

The MIT License (MIT). Please see License File for more information.