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
Execute the following command to get the latest version of the package:
composer require bizhub/force-https
Add Bizhub\ForceHttps\Middleware\ForceHttps::class to app/Http/Kernel.php
protected $middlewareGroups = [
'web' => [
// ...
\Bizhub\ForceHttps\Middleware\ForceHttps::class
]
];