LaravelPackages.net
Acme Inc.
Toggle sidebar
softonic/laravel-request-accept-json-middleware

Laravel middleware to add Accept application/json header to requests

52.333
4
5.0.0
About softonic/laravel-request-accept-json-middleware

softonic/laravel-request-accept-json-middleware is a Laravel package for laravel middleware to add accept application/json header to requests. It currently has 4 GitHub stars and 52.333 downloads on Packagist (latest version 5.0.0). Install it with composer require softonic/laravel-request-accept-json-middleware. Discover more Laravel packages by softonic or browse all Laravel packages to compare alternatives.

Last updated

Laravel request accept json middleware

Latest Version Software License Build Status Coverage Status Quality Score Total Downloads Average time to resolve an issue Percentage of issues still open

This middleware adds the ability to automatically add the Accept application/json header to every request if it was not provided.

Requirements

  • PHP >= 8.5
  • Laravel 12.x

Installation

Via composer:

composer require softonic/laravel-request-accept-json-middleware

Documentation

To use the middleware register it in app/Http/Kernel.php

    protected $middleware
        = [
            ...
            RequestAcceptJson::class,
            ...
        ];

From now on the header Accept: application/json will be automatically added to every request.

Testing

softonic/laravel-request-accept-json-middleware has a PHPUnit test suite, code style compliance check using PHP CS Fixer, and static analysis using PHPStan.

To run the tests, run the following command from the project folder:

$ docker compose run --rm test

To run PHPUnit only:

$ docker compose run --rm phpunit

To check code style:

$ docker compose run --rm php composer run phpcs

To fix code style issues:

$ docker compose run --rm fixcs

To run static analysis:

$ docker compose run --rm php composer run phpstan

License

The Apache 2.0 license. Please see LICENSE for more information.

Star History Chart