https://github.com/m1guelpf/laravel-ssl
A Laravel package to enforce HTTPS
https://github.com/m1guelpf/laravel-ssl
enforce laravel package security ssl
Last synced: about 1 year ago
JSON representation
A Laravel package to enforce HTTPS
- Host: GitHub
- URL: https://github.com/m1guelpf/laravel-ssl
- Owner: m1guelpf
- License: mpl-2.0
- Created: 2017-02-08T19:26:33.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-11-16T18:38:10.000Z (over 6 years ago)
- Last Synced: 2025-05-13T00:49:10.245Z (about 1 year ago)
- Topics: enforce, laravel, package, security, ssl
- Language: PHP
- Homepage:
- Size: 14.6 KB
- Stars: 7
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Enforce SSL for Laravel
[](https://packagist.org/packages/m1guelpf/laravel-ssl)
[](LICENSE.md)
[](https://packagist.org/packages/m1guelpf/laravel-ssl)
Laravel SSL is a Laravel package that allows you to enforce HTTPS in certain parts of your site, or even the entire site!
## Installation
You can install the package via composer:
``` bash
composer require m1guelpf/laravel-ssl
```
Next, you must install the service provider:
```php
// config/app.php
'providers' => [
...
M1guelpf\LaravelSSL\LaravelSSLServiceProvider::class,
];
```
## Usage
Your app is now HTTPS-only!
## Changelog
Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.
## Contributing
Please see [CONTRIBUTING](CONTRIBUTING.md) for details.
## Security
If you discover any security related issues, please email soy@miguelpiedrafita.com instead of using the issue tracker.
## Credits
- [Miguel Piedrafita](https://github.com/m1guelpf)
- [All Contributors](../../contributors)
## License
This package is licensed under the Mozilla Public license. Please see [License File](LICENSE.md) for more information.