PHPackages                             makoru-hikage/quesos - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Search &amp; Filtering](/categories/search)
4. /
5. makoru-hikage/quesos

AbandonedArchivedLibrary[Search &amp; Filtering](/categories/search)

makoru-hikage/quesos
====================

Query String Organized Search: A format to facilitate CRUD search through the use of URL query strings.

1.0.1(6y ago)116[2 issues](https://github.com/makoru-hikage/quesos/issues)MITPHPPHP &gt;=7.0.0

Since Sep 25Pushed 6y ago1 watchersCompare

[ Source](https://github.com/makoru-hikage/quesos)[ Packagist](https://packagist.org/packages/makoru-hikage/quesos)[ RSS](/packages/makoru-hikage-quesos/feed)WikiDiscussions master Synced today

READMEChangelog (6)Dependencies (1)Versions (9)Used By (0)

QUESOS - Query String Organized Search
======================================

[](#quesos---query-string-organized-search)

Query String Organized Search: A format to facilitate CRUD search through the use of URL query strings.

Please read the docs: [the introduction](docs/intro.md) and [the usage](docs/usage.md)

Summary...
----------

[](#summary)

1. Receive an HTTP GET request laden with query string.

```
https://www.yoursite.com/contacts/?sex=female&points=gt,9000&first_name=Aida,Lorna,Fe&age=bwn,21,35

```

2. Let it be parsed anyway you like, either by vanilla PHP or any framework.

```
$rawQueryStr = $_SERVER['QUERY_STRING'];
$parsedUrlQuery = array();

parse_str($rawQueryStr, $parsedUrlQuery);

print_r($parsedUrlQuery, true);

```

OUTPUT:

```
Array
(
    [sex] => female
    [points] => gt,9000
    [first_name] => Aida,Lorna,Fe
    [age] => bwn,21,35
)

```

3. Use the tool itself.

```
$test = new QueryStringConverter($parsedUrlQuery);

$finishedProduct = $test->convert();

print_r($finishedProduct, true);

```

OUTPUT:

```
Array
(
    [sex] => Array
        (
            [0] => sex
            [1] => =
            [2] => female
        )

    [points] => Array
        (
            [0] => points
            [1] => >
            [2] => 9000
        )

    [first_name] => Array
        (
            [0] => first_name
            [1] => in
            [2] => Array
                (
                    [0] => Aida
                    [1] => Lorna
                    [2] => Fe
                )

        )

    [age] => Array
        (
            [0] => age
            [1] => between
            [2] => Array
                (
                    [0] => 21
                    [1] => 35
                )

        )

)

```

4. Do whatever you want with that.

###  Health Score

22

—

LowBetter than 22% of packages

Maintenance0

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity63

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~112 days

Recently: every ~168 days

Total

7

Last Release

2476d ago

Major Versions

0.2.1 → 1.0.02019-07-30

### Community

Maintainers

![](https://www.gravatar.com/avatar/f5773296e61a7a3a21ed6bedbc18c2578215bdd856ba14c1810f54c80ca2ae53?d=identicon)[makoru-hikage](/maintainers/makoru-hikage)

---

Top Contributors

[![makoru-hikage](https://avatars.githubusercontent.com/u/18744785?v=4)](https://github.com/makoru-hikage "makoru-hikage (40 commits)")

---

Tags

format

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/makoru-hikage-quesos/health.svg)

```
[![Health](https://phpackages.com/badges/makoru-hikage-quesos/health.svg)](https://phpackages.com/packages/makoru-hikage-quesos)
```

###  Alternatives

[ruflin/elastica

Elasticsearch Client

2.3k50.4M202](/packages/ruflin-elastica)[opensearch-project/opensearch-php

PHP Client for OpenSearch

15024.3M65](/packages/opensearch-project-opensearch-php)[mailerlite/laravel-elasticsearch

An easy way to use the official PHP ElasticSearch client in your Laravel applications.

934529.3k2](/packages/mailerlite-laravel-elasticsearch)[massive/search-bundle

Massive Search Bundle

721.4M13](/packages/massive-search-bundle)[shyim/opensearch-php-dsl

OpenSearch/Elasticsearch DSL library

175.9M9](/packages/shyim-opensearch-php-dsl)[outl1ne/nova-multiselect-filter

Multiselect filter for Laravel Nova.

45802.7k3](/packages/outl1ne-nova-multiselect-filter)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
