PHPackages                             pioniro/request-response-model - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. pioniro/request-response-model

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

pioniro/request-response-model
==============================

Common interfaces for the Request and Response models

v1.0.0(6y ago)02211MITPHP

Since Mar 31Pushed 6y ago1 watchersCompare

[ Source](https://github.com/pioniro/RequestResponseModels)[ Packagist](https://packagist.org/packages/pioniro/request-response-model)[ RSS](/packages/pioniro-request-response-model/feed)WikiDiscussions master Synced 6d ago

READMEChangelog (1)DependenciesVersions (2)Used By (1)

Request and Response models
===========================

[](#request-and-response-models)

Is a common interfaces for reducing coupling.

Imagine a minimal symfony controller:

*before:*

```
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;

class SomeController extends AbstractController {
    public function indexAction(Request $request): Response
    {
        // ...
    }
}
```

*after:*

```
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use YourApp\Model\RequestModel\SomeIndexRequestModel;
use YourApp\Model\ResponseModel\SomeIndexResponseModel;

class SomeController extends AbstractController {
    public function indexAction(SomeIndexRequestModel $validModel): SomeIndexResponseModel
    {
        // ...
    }
}
```

Did you see this? We reduced coupling for free!

That's why this library is.

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity56

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

Unknown

Total

1

Last Release

2239d ago

### Community

Maintainers

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

---

Top Contributors

[![pioniro](https://avatars.githubusercontent.com/u/6437567?v=4)](https://github.com/pioniro "pioniro (1 commits)")

### Embed Badge

![Health badge](/badges/pioniro-request-response-model/health.svg)

```
[![Health](https://phpackages.com/badges/pioniro-request-response-model/health.svg)](https://phpackages.com/packages/pioniro-request-response-model)
```

###  Alternatives

[mult1mate/cron-manager

Flexible cron tasks manager for MVC-type applications

40338.5k3](/packages/mult1mate-cron-manager)[michielkempen/nova-polymorphic-field

A Laravel Nova field container allowing to depend on other fields values

6781.9k1](/packages/michielkempen-nova-polymorphic-field)[fomvasss/laravel-meta-tags

A package to manage SEO (meta-tags, xml-fields, etc.)

3028.9k](/packages/fomvasss-laravel-meta-tags)[leapt/core-bundle

Symfony LeaptCoreBundle

2529.1k4](/packages/leapt-core-bundle)[sherlockode/configuration-bundle

Symfony bundle for user-defined configuration values

3118.7k](/packages/sherlockode-configuration-bundle)[digitalcloud/nova-address-field

A Laravel Nova Address field.

1019.5k](/packages/digitalcloud-nova-address-field)

PHPackages © 2026

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