bizhub/force-https

Laravel middleware for forcing https protocol

Installs: 586

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

pkg:composer/bizhub/force-https

1.0.2 2022-12-04 03:19 UTC

This package is auto-updated.

Last update: 2025-10-04 09:21:26 UTC


README

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
    ]
];