Skip to content

Releases: samsonasik/ForceHttpsModule

4.1.1

07 Feb 22:12
4.1.1
909b916
Compare
Choose a tag to compare
  • Add Composer 2.2 Support

4.1.0

10 Dec 07:36
4.1.0
b1e7ea0
Compare
Choose a tag to compare

ci build Code Coverage

  • add php 8.1 support
  • drop php 7.3 support

4.0.1

01 Jan 14:37
4.0.1
b20a77b
Compare
Choose a tag to compare
extra config fix in composer.json

4.0.0

27 Dec 12:58
4.0.0
3becee0
Compare
Choose a tag to compare
  • support php ^7.3|~8.0
  • drop laminas-console dependency

Build Status Coverage Status PHPStan

3.1.0

10 Sep 13:15
3.1.0
90a79e5
Compare
Choose a tag to compare

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

10 Jan 19:50
3.0.0
2ee59e9
Compare
Choose a tag to compare

upgrade for full laminas mvc and mezzio app

2.1.1

13 Jan 01:17
2.1.1
ae260b1
Compare
Choose a tag to compare
  • listener registration clean up

2.1.0

13 Jan 01:07
2.1.0
37dd5a8
Compare
Choose a tag to compare

Build Status Coverage Status PHPStan

Added 'allow_404' config to allow Force Https to 404 pages, can be configured as follow:

<?php

return [
    'force-https-module' => [
        'enable'                => true,
        // ... other configs
        'allow_404'             => true,
    ],
];

2.0.9

04 Jan 23:24
2.0.9
87826af
Compare
Choose a tag to compare

remove unneded SendResponseListener detach

2.0.8

04 Jan 23:15
2.0.8
98741f9
Compare
Choose a tag to compare
  • use exit(0); to actually stop overlapping redirect in when used in zend-mvc env