Releases: samsonasik/ForceHttpsModule
Releases · samsonasik/ForceHttpsModule
4.1.1
4.1.0
4.0.1
extra config fix in composer.json
4.0.0
3.1.0
Added exclude_specific_routes config option. You can now exclude specific routes like the following:
<?php
// config/autoload/force-https-module.local.php or config/autoload/mezzio-force-https-module.local.php
return [
'force-https-module' => [
// ...
'exclude_specific_routes' => [
// a lists of specific routes to not be https
// only works if previous config 'force_all_routes' => true
'non-https-route',
],
// ...
],
];
Complete example of configuration can be read in the README.md.
3.0.0
upgrade for full laminas mvc and mezzio app
2.1.1
- listener registration clean up
2.1.0
2.0.9
remove unneded SendResponseListener detach
2.0.8
- use exit(0); to actually stop overlapping redirect in when used in zend-mvc env