toyi/force-https

Force Https middleware for Laravel apps

1.1.0 2020-11-24 14:30 UTC

This package is auto-updated.

Last update: 2024-05-24 21:55:46 UTC


README

Packagist

Provide a simple and convenient way to force Https.

Installation

Install via composer

composer require toyi/force-https

Register Service Provider

Note! This and next step are optional if you use laravel>=5.5 with package auto discovery feature.

Add service provider to config/app.php in providers section

Toyi\ForceHttps\ServiceProvider::class,

Publish Configuration File

php artisan vendor:publish --provider="Toyi\ForceHttps\ServiceProvider" --tag="config"

Usage

Add the Toyi\ForceHttps\ForceHttps::class middleware in the web middleware group. The FORCE_HTTPS boolean env variable can be used to activate or deactivate redirections.

Security

If you discover any security related issues, please email instead of using the issue tracker.

Credits

This package is bootstrapped with the help of melihovv/laravel-package-generator.