morningtrain/laravel-https
Provides some initial https setup
2,856
1
| Install | |
|---|---|
composer require morningtrain/laravel-https |
|
| Latest Version: | 1.6.0 |
| PHP: | ^7.2|^8.0 |
| License: | GPL-3.0-only |
| Last Updated: | May 8, 2023 |
| Links: | GitHub · Packagist |
Maintainer: morningtrain
Helper for SSL & HTTPS
Install
Via Composer
$ composer require morningtrain/laravel-https
Usage
Deploy the config files.
$ php artisan vendor:publish
Update the following in your .env:
USE_SSL=true
REDIRECT_TO_HTTPS=true
Register the ForceSSL middleware as a global middleware in your App\Httk\Kernel class:
class Kernel extends HttpKernel
{
/**
* The application's middleware stack.
*
* @var array
*/
protected $middleware = [
\MorningTrain\Laravel\Https\Http\Middleware\ForceSSL::class,
];
}
Credits
Related Packages
erirk/paypalpayment
laravel-paypalpayment is simple package help you process direct credit card paym...
0
doctrine/dbal
Powerful PHP database abstraction layer (DBAL) with many features for database s...
617,346,630
9,703