filament-uno/json-request-bundle

This package is abandoned and no longer maintained. No replacement package was suggested.

Symfony JsonRequest Bundle

v1.0.0 2020-12-21 10:14 UTC

This package is auto-updated.

Last update: 2022-09-06 13:44:25 UTC


README

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: https://github.com/symfony-bundles/json-request-bundle

Build Status Scrutinizer Code Quality Code Coverage Total Downloads Latest Stable Version License

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

  • Require the bundle with composer:
composer require filament-uno/json-request-bundle