vitnasinec / uri
v1.0.2
2025-01-22 15:33 UTC
Requires
- php: ^7.2|^8.0
- illuminate/http: ^6.0|^7.0|^8.0|^9.0|^10.0|^11.0
- illuminate/routing: ^6.0|^7.0|^8.0|^9.0|^10.0|^11.0
- illuminate/support: ^6.0|^7.0|^8.0|^9.0|^10.0|^11.0
Requires (Dev)
- ext-json: *
- larastan/larastan: ^2.0
- orchestra/testbench: ^4.0|^5.0|^6.0|^7.0|^8.0
- phpunit/phpunit: ^8.0|^9.0|^10.0
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.