generationtux / json-middleware by Olofguard

A simple laravel/lumen middleware for denying non-json POST and PUT requests.
4,683
4
21
Package Data
Maintainer Username: Olofguard
Maintainer Contact: christopher.russell@seven-26.com (Damien Russell)
Package Create Date: 2015-09-29
Package Last Update: 2015-10-07
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2024-04-29 15:05:25
Package Statistics
Total Downloads: 4,683
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 4
Total Watchers: 21
Total Forks: 0
Total Open Issues: 0

Json-Middleware

A simple laravel/lumen middleware for denying non-json POST and PUT requests.

Installation

You can install json-middleware via composer.

$ composer require generationtux/json-middleware:~1.0

Once installed you simply need to register the middleware.

Laravel

You should register the middleware in the App\Http\Kerenel.php. You can opt to apply the middleware gloablly to all routes, or simply register it under the routes middelware and manually apply it to specific routes.

    /**
     * The application's global HTTP middleware stack.
     *
     * @var array
     */
    protected $middleware = [
        'isjson'  => ValidateIsJsonMiddleware::class
    ];

Lumen

Lumen requires you to register the middleware in bootstrap/app.php but again you may opt to register the middleware gloablly or not, it's up to you.

	/*
	|--------------------------------------------------------------------------
	| Register Middleware
	|--------------------------------------------------------------------------
	|
	| Next, we will register the middleware with the application. These can
	| be global middleware that run before and after each request into a
	| route or middleware that'll be assigned to some specific routes.
	|
	*/
	$app->middleware([
	    GenTux\Json\Http\ValidateIsJsonMiddleware::class
	]);