Packages
Contact
Language
English
Français
Русский
Italiano
Português
Español
Looking to hire Laravel developers? Try
LaraJobs
laravel-a-i-o-security
maintained by
devchan
PACKAGE
VERSIONS
Description
This is Laravel all in one security package
Author
devchan
Last update
2018/08/13 15:54
(dev-master)
License
MIT
Links
GitHub
-
Packagist
Downloads
5
dev-master
Last update
2018/08/13 15:54
License
MIT
Require
php
^7.1
illuminate/auth
~5.6.0
illuminate/config
~5.6.0
illuminate/support
~5.6.0
illuminate/filesystem
~5.6.0
ezyang/htmlpurifier
4.10.*
Comments
Please enable JavaScript to view the
comments powered by Disqus.
comments powered by
Disqus
Laravel A I O Security
Useful package for improving application security in your Laravel stuffs
'password_expired' => \Devchan\LaravelAIOSecurity\Http\Middleware\PasswordExpired::class,
'password_changed_at' => Carbon::now()->toDateTimeString(),
use Carbon\Carbon;
protected $fillable = [
'name', 'email', 'password', 'password_changed_at',
];
'password_expires_days' => env('PASSWORD_EXPIRES_DAYS', 30),
\Devchan\LaravelAIOSecurity\Http\Middleware\ForceHttps::class,
'https_force' => env('HTTPS_FORCE', false),