Weave Code
Code Weaver
Helps Laravel developers discover, compare, and choose open-source packages. See popularity, security, maintainers, and scores at a glance to make better decisions.
Feedback
Share your thoughts, report bugs, or suggest improvements.
Subject
Message

Json Request Bundle Laravel Package

symfony-bundles/json-request-bundle

Symfony bundle that decodes JSON request bodies and injects them into the Request parameter bag for easy controller handling. Supports common content types, validation-friendly input, and simplifies building JSON APIs by treating JSON like standard form data.

View on GitHub
Deep Wiki
Context7

Symfony JsonRequest Bundle

Scrutinizer Code Quality Code Coverage Total Downloads Latest Stable Version License

Installation

  • Require the bundle with composer:
composer req symfony-bundles/json-request-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');
}

Per default request content will be transformed only for requests with content type json or jsonld.

but you can stil configure it with

# serices.yaml

json_request:
    content_types:
        - json
        - jsonld
        - someouthertype
Weaver

How can I help you explore Laravel packages today?

Conversation history is not saved when not logged in.
Prompt
Add packages to context
No packages found.
terminal42/code-quality-tools
codifyo/ts-generator-bundle
andydefer/laravel-cluster
testo/fiber
mintobit/jobqueue
a4sex/maintenance-bundle
a4sex/entity-date-update
a4sex/client-identifier
a4sex/base-utilites
a4sex/key-value-storage
a4sex/micro-status
chilldev/dependency-injection-extra
datinglibre/datinglibre-app-api
biberltd/corebundle
bricre/symfony-bundle-test
biberltd/logbundle
dominium/http-adapter-bundle
dominium/google-analytics
a4sex/auto-clean-entity
christhompsontldr/laravel-inky