PHPackages                             flying-narwhal/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. flying-narwhal/json-request-bundle

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

flying-narwhal/json-request-bundle
==================================

Symfony JsonRequest Bundle

v3.1.2(5y ago)648.7k↓55.7%8MITPHPPHP ^7.3

Since Dec 17Pushed 5y ago1 watchersCompare

[ Source](https://github.com/FlyingNarwhal/json-request-bundle)[ Packagist](https://packagist.org/packages/flying-narwhal/json-request-bundle)[ RSS](/packages/flying-narwhal-json-request-bundle/feed)WikiDiscussions main Synced 2d ago

READMEChangelogDependencies (5)Versions (3)Used By (0)

JsonRequest Bundle
==================

[](#jsonrequest-bundle)

[![Latest Stable Version](https://camo.githubusercontent.com/07f356977ab144f47b15a18aa033ff8e9dd8dc082bfc247aa6f6a8efa06cf3f1/68747470733a2f2f706f7365722e707567782e6f72672f666c79696e672d6e61727768616c2f6a736f6e2d726571756573742d62756e646c652f762f737461626c65)](https://packagist.org/packages/flying-narwhal/json-request-bundle)[![Total Downloads](https://camo.githubusercontent.com/b332d0db1d0d7371ee4b6d277e8d29383475c0a80b28ad48c956a51b7d91304e/68747470733a2f2f706f7365722e707567782e6f72672f666c79696e672d6e61727768616c2f6a736f6e2d726571756573742d62756e646c652f646f776e6c6f616473)](https://packagist.org/packages/flying-narwhal/json-request-bundle)[![License](https://camo.githubusercontent.com/6868b35d55f50b87c5ece3d5db8ce6df9028f4f01d855229da20b75cfade1190/68747470733a2f2f706f7365722e707567782e6f72672f666c79696e672d6e61727768616c2f6a736f6e2d726571756573742d62756e646c652f6c6963656e7365)](https://github.com/FlyingNarwhal/json-request-bundle/blob/main/LICENSE)

> This package was recovered from local copy. It is not planned to maintain it.

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

[](#installation)

- Require the bundle with composer:

```
composer require flying-narwhal/json-request-bundle
```

From original readme:

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

[](#symfonybundles-jsonrequest-bundle)

[![SensioLabsInsight](https://camo.githubusercontent.com/fd70d854331d9c5d2c2582212518788d2bfde3e6d913fcbbbbf234cfa131bb72/68747470733a2f2f696e73696768742e73656e73696f6c6162732e636f6d2f70726f6a656374732f64656136383633332d323336382d346531322d613531362d3839313537643263366230372f6269672e706e67)](https://insight.sensiolabs.com/projects/dea68633-2368-4e12-a516-89157d2c6b07)

[![Build Status](https://camo.githubusercontent.com/04d8ddce4394c80154f1429aae0e9df586c249f0927a644988132b297967aade/68747470733a2f2f7472617669732d63692e6f72672f73796d666f6e792d62756e646c65732f6a736f6e2d726571756573742d62756e646c652e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/symfony-bundles/json-request-bundle)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/6a30fdf312612a7a2a6f5f3965f6683fb42f3b81e30ca888ce0338c0aea51203/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f73796d666f6e792d62756e646c65732f6a736f6e2d726571756573742d62756e646c652f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/symfony-bundles/json-request-bundle/?branch=master)[![Code Coverage](https://camo.githubusercontent.com/ec3e2a15b4edf685ada7422f574d27f9c0878d0ec8d946035f7660cb7f971554/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f73796d666f6e792d62756e646c65732f6a736f6e2d726571756573742d62756e646c652f6261646765732f636f7665726167652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/symfony-bundles/json-request-bundle/?branch=master)

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');
}
```

###  Health Score

32

—

LowBetter than 69% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity33

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity50

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 87.5% 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 ~7 days

Total

2

Last Release

2018d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/67198917?v=4)[FlyingNarwhal](/maintainers/FlyingNarwhal)[@FlyingNarwhal](https://github.com/FlyingNarwhal)

---

Top Contributors

[![FlyingNarwhal](https://avatars.githubusercontent.com/u/67198917?v=4)](https://github.com/FlyingNarwhal "FlyingNarwhal (14 commits)")[![alecrabbit](https://avatars.githubusercontent.com/u/11045453?v=4)](https://github.com/alecrabbit "alecrabbit (1 commits)")[![mkilmanas](https://avatars.githubusercontent.com/u/392168?v=4)](https://github.com/mkilmanas "mkilmanas (1 commits)")

---

Tags

jsonsymfonybundleangular

###  Code Quality

TestsPHPUnit

### Embed Badge

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

```
[![Health](https://phpackages.com/badges/flying-narwhal-json-request-bundle/health.svg)](https://phpackages.com/packages/flying-narwhal-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.9k11](/packages/web-auth-webauthn-symfony-bundle)[2lenet/crudit-bundle

The easy like Crud'it Bundle.

1616.4k14](/packages/2lenet-crudit-bundle)

PHPackages © 2026

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