Releases: samsonasik/ForceHttpsModule
Releases · samsonasik/ForceHttpsModule
5.0.1
Released: ForceHttpsModule 5.0.0
What's Changed
- Bump to PHP 8.2 and add PHP 8.4 support by @samsonasik in #22
Full Changelog: 4.1.1...5.0.0
4.1.1
- Add Composer 2.2 Support
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