Skip to content

Releases: samsonasik/ForceHttpsModule

Released: ForceHttpsModule 5.1.0

Choose a tag to compare

@samsonasik samsonasik released this 12 Jan 07:40
5.1.0
846ce2f

What's Changed

ci build Code Coverage PHPStan Downloads

Full Changelog: 5.0.1...5.1.0

5.0.1

Choose a tag to compare

@samsonasik samsonasik released this 08 Jan 04:31
5.0.1
9b9e1b5

What's Changed

Full Changelog: 5.0.0...5.0.1

Released: ForceHttpsModule 5.0.0

Choose a tag to compare

@samsonasik samsonasik released this 29 Dec 06:15
5.0.0
d85d789

What's Changed

Full Changelog: 4.1.1...5.0.0

4.1.1

Choose a tag to compare

@samsonasik samsonasik released this 07 Feb 22:12
4.1.1
909b916
  • Add Composer 2.2 Support

4.1.0

Choose a tag to compare

@samsonasik samsonasik released this 10 Dec 07:36
4.1.0
b1e7ea0

ci build Code Coverage

  • add php 8.1 support
  • drop php 7.3 support

4.0.1

Choose a tag to compare

@samsonasik samsonasik released this 01 Jan 14:37
4.0.1
b20a77b
extra config fix in composer.json

4.0.0

Choose a tag to compare

@samsonasik samsonasik released this 27 Dec 12:58
4.0.0
3becee0
  • support php ^7.3|~8.0
  • drop laminas-console dependency

Build Status Coverage Status PHPStan

3.1.0

Choose a tag to compare

@samsonasik samsonasik released this 10 Sep 13:15
3.1.0
90a79e5

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

Choose a tag to compare

@samsonasik samsonasik released this 10 Jan 19:50
3.0.0
2ee59e9

upgrade for full laminas mvc and mezzio app

2.1.1

Choose a tag to compare

@samsonasik samsonasik released this 13 Jan 01:17
2.1.1
ae260b1
  • listener registration clean up