PHPackages                             filament-uno/json-request-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. [Parsing &amp; Serialization](/categories/parsing)
4. /
5. filament-uno/json-request-bundle

AbandonedArchivedSymfony-bundle[Parsing &amp; Serialization](/categories/parsing)

filament-uno/json-request-bundle
================================

Symfony JsonRequest Bundle

v1.0.0(5y ago)02.2k[1 PRs](https://github.com/Filament-uno/json-request-bundle/pulls)MITPHPPHP ^7.3

Since Dec 21Pushed 3y ago1 watchersCompare

[ Source](https://github.com/Filament-uno/json-request-bundle)[ Packagist](https://packagist.org/packages/filament-uno/json-request-bundle)[ Docs](https://github.com/symfony-bundles/json-request-bundle)[ RSS](/packages/filament-uno-json-request-bundle/feed)WikiDiscussions main Synced 3w ago

READMEChangelog (1)Dependencies (5)Versions (3)Used By (0)

SymfonyBundles JsonRequest Bundle
=================================

[](#symfonybundles-jsonrequest-bundle)

This is a copy of the Original SymfonyBundles JsonRequest bundle, with commit fa0e3d252c244aea89ef44866c404b29cfd6dc4c as base. I will try to keep this up to date, but I won't be actively adding new features to this bundle.

**Please use the original bundle:**

[![Build Status](https://github.com/Filament-uno/json-request-bundle/workflows/PHP%20Composer/badge.svg)](https://github.com/Filament-uno/json-request-bundle/workflows/PHP%20Composer/badge.svg)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/8e37f7cb4af3aa82252639a60ea8a97e552ab5d78bd3eef8960a089eeb7b61dd/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f46696c616d656e742d756e6f2f6a736f6e2d726571756573742d62756e646c652f6261646765732f7175616c6974792d73636f72652e706e673f623d6d61696e)](https://scrutinizer-ci.com/g/Filament-uno/json-request-bundle/?branch=main)[![Code Coverage](https://camo.githubusercontent.com/3dfdc4a0be7dff87e034bd402b172f75888377f7c0e84456f673e76375c41834/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f46696c616d656e742d756e6f2f6a736f6e2d726571756573742d62756e646c652f6261646765732f636f7665726167652e706e673f623d6d61696e)](https://scrutinizer-ci.com/g/Filament-uno/json-request-bundle/?branch=main)[![Total Downloads](https://camo.githubusercontent.com/11863c7e8bfa6813737a64e63ae6009fd5f026661c9ad7e2fac717ec6dde9178/68747470733a2f2f706f7365722e707567782e6f72672f46696c616d656e742d756e6f2f6a736f6e2d726571756573742d62756e646c652f646f776e6c6f616473)](https://packagist.org/packages/filament-uno/json-request-bundle)[![Latest Stable Version](https://camo.githubusercontent.com/28a2d97574157fd69d12a3e7d22d60d60c540d9a6c50ce54da7d27d139c8a628/68747470733a2f2f706f7365722e707567782e6f72672f46696c616d656e742d756e6f2f6a736f6e2d726571756573742d62756e646c652f762f737461626c65)](https://packagist.org/packages/filament-uno/json-request-bundle)[![License](https://camo.githubusercontent.com/04d1d5c11be87e6e9ae17a750c687701620f26bfab97d4091ba7718ae3cb3f6e/68747470733a2f2f706f7365722e707567782e6f72672f46696c616d656e742d756e6f2f6a736f6e2d726571756573742d62756e646c652f6c6963656e7365)](https://github.com/filament-uno/json-request-bundle/blob/master/LICENSE)

What is JsonRequest Bundle?
---------------------------

[](#what-is-jsonrequest-bundle)

This bundle will help you to work with json requests as standard requests without using «crutches». If previously for fetching of data from the request you did like this: `$data = json_decode($request->getContent())`, it is now in this already there is no need to.

For example when sending json-request from AngularJS, Vue.js or etc. Early:

```
public function indexAction(Request $request)
{
    $data = json_decode($request->getContent(), true);

    // uses request data
    $name = isset($data['name']) ? $data['name'] : null;
}
```

Now you can work with json-request as with standard request:

```
public function indexAction(Request $request)
{
    $name = $request->get('name');
}
```

Installation
------------

[](#installation)

- Require the bundle with composer:

```
composer require filament-uno/json-request-bundle
```

###  Health Score

26

—

LowBetter than 41% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity15

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity50

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

2019d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/133ea35380598b2f93888d7c840cf4384349a2ab5787811d8258c3e71fbce1a7?d=identicon)[paul999](/maintainers/paul999)

---

Top Contributors

[![paul999](https://avatars.githubusercontent.com/u/65767?v=4)](https://github.com/paul999 "paul999 (9 commits)")

---

Tags

jsonsymfonybundleangular

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/filament-uno-json-request-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/filament-uno-json-request-bundle/health.svg)](https://phpackages.com/packages/filament-uno-json-request-bundle)
```

###  Alternatives

[symfony-bundles/json-request-bundle

Symfony JsonRequest Bundle

511.7M6](/packages/symfony-bundles-json-request-bundle)[presta/sitemap-bundle

A Symfony bundle that provides tools to build your application sitemap.

39610.0M37](/packages/presta-sitemap-bundle)[rcsofttech/audit-trail-bundle

Enterprise-grade, high-performance Symfony audit trail bundle. Automatically track Doctrine entity changes with split-phase architecture, multiple transports (HTTP, Queue, Doctrine), and sensitive data masking.

1189.8k](/packages/rcsofttech-audit-trail-bundle)[web-auth/webauthn-framework

FIDO2/Webauthn library for PHP and Symfony Bundle.

515100.5k3](/packages/web-auth-webauthn-framework)[web-auth/webauthn-symfony-bundle

FIDO2/Webauthn Security Bundle For Symfony

66529.9k10](/packages/web-auth-webauthn-symfony-bundle)[ecotone/symfony-bundle

Ecotone for Symfony — CQRS, Event Sourcing, Sagas, Durable Workflows, and Outbox on top of Symfony Messenger, via PHP attributes.

11249.0k1](/packages/ecotone-symfony-bundle)

PHPackages © 2026

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