PHPackages                             haskel/request-param-bind-bundle - 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. [HTTP &amp; Networking](/categories/http)
4. /
5. haskel/request-param-bind-bundle

ActiveSymfony-bundle[HTTP &amp; Networking](/categories/http)

haskel/request-param-bind-bundle
================================

Converts HTTP request to DTO

v0.2.4(3y ago)012MITPHP

Since Apr 20Pushed 3y ago1 watchersCompare

[ Source](https://github.com/haskel/request-param-bind-bundle)[ Packagist](https://packagist.org/packages/haskel/request-param-bind-bundle)[ RSS](/packages/haskel-request-param-bind-bundle/feed)WikiDiscussions main Synced 1w ago

READMEChangelog (6)Dependencies (4)Versions (8)Used By (0)

Query
-----

[](#query)

`name=John&surname=Smith`

```
class Controller
{

    public function getPerson(#[FromQuery] string $name, #[FromQuery] string $surname)
    {
        //...
    }
}
```

`name=John&surname=Smith&middleName=Dude`

```
class Person
{
    public ?string $name;
    public ?string $surname;
    public ?string $middleName;
}

class Controller
{

    public function getPerson(#[FromQuery] Person $person)
    {
        //...
    }
}
```

`filter[price][from]=10&filter[price][to]=300`

```
class Filter
{
    public ?PriceRange $price;
}

class PriceRange
{
    public ?float $from;
    public ?float $to;
}

class Controller
{

    public function filter(#[FromQuery] Filter $filter)
    {
        //...
    }
}
```

`page=3&itemsPerPage=100&filter[price][from]=10&filter[price][to]=300`

```
class Filter
{
    public ?PriceRange $price;
}

class PriceRange
{
    public ?float $from;
    public ?float $to;
}

class Pagination
{
    public int $page = 1;
    public int $itemsPerPage = 10;
}

class Controller
{

    public function filter(#[FromQuery] Filter $filter, #[FromQuery] Pagination $pagination)
    {
        //...
    }
}
```

`filter[name][0]=location&filter[value][0]=California&filter[name][1]=maxPrice&filter[value][1]=300`

```
class Filter
{
    public string $name;
    public $value;
}

class Controller
{

    public function filter(#[FromQuery] Filter ...$filters)
    {
        //...
    }
}
```

Body
----

[](#body)

same as Query

Header
------

[](#header)

Cookie
------

[](#cookie)

File
----

[](#file)

Name Converter
--------------

[](#name-converter)

###  Health Score

22

—

LowBetter than 22% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity47

Maturing project, gaining track record

 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 ~82 days

Recently: every ~103 days

Total

6

Last Release

1441d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/e6664a012116e84bd725cf435cf709c5ec1c1cfa204c53dba11092ab151769f2?d=identicon)[haskel](/maintainers/haskel)

---

Top Contributors

[![haskel](https://avatars.githubusercontent.com/u/721087?v=4)](https://github.com/haskel "haskel (8 commits)")

---

Tags

http

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/haskel-request-param-bind-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/haskel-request-param-bind-bundle/health.svg)](https://phpackages.com/packages/haskel-request-param-bind-bundle)
```

###  Alternatives

[guzzlehttp/psr7

PSR-7 message implementation that also provides common utility methods

8.0k1.0B3.2k](/packages/guzzlehttp-psr7)[psr/http-message

Common interface for HTTP messages

7.1k1.0B5.5k](/packages/psr-http-message)[psr/http-factory

PSR-17: Common interfaces for PSR-7 HTTP message factories

1.9k692.9M1.9k](/packages/psr-http-factory)[psr/http-client

Common interface for HTTP clients

1.7k680.7M2.1k](/packages/psr-http-client)[symfony/http-client

Provides powerful methods to fetch HTTP resources synchronously or asynchronously

2.0k314.0M3.4k](/packages/symfony-http-client)[psr/link

Common interfaces for HTTP links

2.5k144.1M68](/packages/psr-link)

PHPackages © 2026

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