Releases: samsonasik/ForceHttpsModule
Releases · samsonasik/ForceHttpsModule
1.6.1
- add php 7.2 into travis config
- phpstan update
- clean up import statements
1.6.0
- use 308 status code for redirect with require minimum zend-http to ^2.7
1.5.0
New feature:
- Allow remove
www.
prefix during redirection from http or already https.
1.4.3
1.4.2
micro optimization on function calls
1.4.1
1.4.0
Now allow add "www." prefix during redirection with configurable:
return [
'force-https-module' => [
/** Other required config here **/
'add_www_prefix' => true,
],
];
So, when we open 'http://example.com' it will be redirected to 'https://www.example.com'.
For complete configuration set, please consult the README
1.3.3
type hint fixes
1.3.2
Event type hint fix in on listener attach
1.3.1
- added middleware keyword in composer.json
- move repetitive code to trait when possible
__invoke()
signature fix of $next and various type hint added