mordisacks / laravel-force-https
Laravel middleware for forcing https connection
Installs: 5 603
Dependents: 1
Suggesters: 0
Security: 0
Stars: 3
Watchers: 1
Forks: 0
Open Issues: 0
This package is auto-updated.
Last update: 2024-10-25 15:37:24 UTC
README
Install
Require this package with composer using the following command:
composer require mordisacks/laravel-force-https
After updating composer, add the service provider to the providers
array in config/app.php
MordiSacks\LaravelForceHttps\ServiceProvider::class,
Laravel 5.5 uses Package Auto-Discovery, so doesn't require you to manually add the ServiceProvider.
To install this package on only development systems, add the --dev
flag to your composer command:
composer require --dev mordisacks/laravel-force-https
Usage
Just add forceHttps
to your middleware list
Route::group(['middleware' => ['forceHttps']], function () { Route::get('/home', 'HomeController@index')->name('home'); });
Or in a controller
public function __construct() { $this->middleware('forceHttps'); }