Dancer-Plugin-SecureSessionID

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

      "configure" : {
         "requires" : {
            "ExtUtils::MakeMaker" : "0"
         }
      },
      "runtime" : {
         "requires" : {
            "Crypt::OpenSSL::Random" : "0.04",
            "Dancer" : "1.312",
            "MIME::Base64" : "3.14",
            "Modern::Perl" : "0",
            "Test::More" : "0"
         }
      }
   },
   "release_status" : "stable",
   "version" : "0.02"
}

META.yml  view on Meta::CPAN

  version: '1.4'
name: Dancer-Plugin-SecureSessionID
no_index:
  directory:
    - t
    - inc
requires:
  Crypt::OpenSSL::Random: '0.04'
  Dancer: '1.312'
  MIME::Base64: '3.14'
  Modern::Perl: '0'
  Test::More: '0'
version: '0.02'

config/BuildOptions.pm  view on Meta::CPAN

%BuildOptions = (%BuildOptions,
    NAME                => 'Dancer::Plugin::SecureSessionID',
    DISTNAME            => 'Dancer-Plugin-SecureSessionID',
    AUTHOR              => 'David Zurborg <zurborg@cpan.org>',
    VERSION_FROM        => 'lib/Dancer/Plugin/SecureSessionID.pm',
    ABSTRACT_FROM       => 'lib/Dancer/Plugin/SecureSessionID.pm',
    LICENSE             => 'open-source',
    PL_FILES            => {},
    PMLIBDIRS           => [qw[ lib ]],
    PREREQ_PM => {
		'Modern::Perl'		=> 0,
        'Test::More'		=> 0,
		'Dancer'			=> 1.312,
		'Crypt::OpenSSL::Random'		=> 0.04,
		'MIME::Base64'		=> 3.14,
    },
    dist => {
        COMPRESS            => 'gzip -9f',
        SUFFIX              => 'gz',
        CI                  => 'git add',
        RCS_LABEL           => 'true',

lib/Dancer/Plugin/SecureSessionID.pm  view on Meta::CPAN

package Dancer::Plugin::SecureSessionID;

use Modern::Perl;

use Carp 'croak';
use Dancer ':syntax';
use Dancer::Plugin;
use Dancer::Session::Abstract ();
use Crypt::OpenSSL::Random ();
use MIME::Base64 ();

=head1 NAME

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 2.945 seconds using v1.00-cache-2.02-grep-82fe00e-cpan-48ebf85a1963 )