LaravelPackages.net
Acme Inc.
Toggle sidebar
bizhub/force-https

Laravel middleware for forcing https protocol

773
0
1.0.2
About bizhub/force-https

bizhub/force-https is a Laravel package for laravel middleware for forcing https protocol. It currently has 0 GitHub stars and 773 downloads on Packagist (latest version 1.0.2). Install it with composer require bizhub/force-https. Discover more Laravel packages by bizhub or browse all Laravel packages to compare alternatives.

Last updated

Force https middleware for Laravel

Latest Version on Packagist Packagist Downloads

Installation

1. Composer

Execute the following command to get the latest version of the package:

composer require bizhub/force-https

2. Laravel

Add Bizhub\ForceHttps\Middleware\ForceHttps::class to app/Http/Kernel.php

protected $middlewareGroups = [
    'web' => [
        // ...

        \Bizhub\ForceHttps\Middleware\ForceHttps::class
    ]
];
Comments