Dancer2-Plugin-PageHistory
view release on metacpan or search on metacpan
]
},
"prereqs" : {
"build" : {
"requires" : {
"File::Path" : "0",
"HTTP::Cookies" : "0",
"HTTP::Request::Common" : "0",
"JSON::MaybeXS" : "0",
"Plack" : "1.0031",
"Test::Fatal" : "0",
"Test::More" : "0.94"
}
},
"configure" : {
"requires" : {
"ExtUtils::MakeMaker" : "0"
}
},
"runtime" : {
"requires" : {
---
abstract: 'Collect interesting pages a user has visited in the session'
author:
- 'Peter Mottram (SysPete) <peter@sysnix.com>'
build_requires:
File::Path: '0'
HTTP::Cookies: '0'
HTTP::Request::Common: '0'
JSON::MaybeXS: '0'
Plack: '1.0031'
Test::Fatal: '0'
Test::More: '0.94'
configure_requires:
ExtUtils::MakeMaker: '0'
dynamic_config: 1
generated_by: 'ExtUtils::MakeMaker version 7.18, CPAN::Meta::Converter version 2.150005'
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: '1.4'
name: Dancer2-Plugin-PageHistory
Makefile.PL view on Meta::CPAN
MIN_PERL_VERSION => 5.006,
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => 0,
},
BUILD_REQUIRES => {
'File::Path' => 0,
'HTTP::Cookies' => 0,
'HTTP::Request::Common' => 0,
'JSON::MaybeXS' => 0,
'Plack' => '1.0031',
'Test::Fatal' => 0,
'Test::More' => '0.94', # subtest
},
PREREQ_PM => {
'Carp' => 0,
'Dancer2' => '0.200000',
'Dancer2::Core::Types' => 0,
'Dancer2::Plugin' => 0,
'Data::Structure::Util' => '0.16',
'Moo' => '2.000',
'namespace::clean' => 0,
t/session-cgisession.t view on Meta::CPAN
use strict;
use warnings;
use Test::Fatal;
use Test::More;
use lib 't/lib';
BEGIN {
$ENV{DANCER_ENVIRONMENT} = 'cgisession';
eval 'use Dancer2::Session::CGISession';
plan skip_all => "Dancer2::Session::CGISession required to run these tests" if $@;
}
t/session-cookie.t view on Meta::CPAN
use strict;
use warnings;
use Test::Fatal;
use Test::More;
use lib 't/lib';
BEGIN {
$ENV{DANCER_ENVIRONMENT} = 'cookie';
eval 'use Dancer2::Session::Cookie';
plan skip_all => "Dancer2::Session::Cookie required to run these tests" if $@;
}
t/session-dbic.t view on Meta::CPAN
use strict;
use warnings;
use Test::Fatal;
use Test::More;
use lib 't/lib';
BEGIN {
$ENV{DANCER_ENVIRONMENT} = 'json';
eval 'use Dancer2::Session::DBIC';
plan skip_all => "Dancer2::Session::DBIC required to run these tests" if $@;
eval 'use DBIx::Class';
t/session-json.t view on Meta::CPAN
use strict;
use warnings;
use Test::Fatal;
use Test::More;
use lib 't/lib';
BEGIN {
eval 'use Dancer2::Session::JSON';
plan skip_all => "Dancer2::Session::JSON required to run these tests" if $@;
}
diag "Dancer2::Session::JSON $Dancer2::Session::JSON::VERSION";
t/session-memcached.t view on Meta::CPAN
use strict;
use warnings;
use Test::Fatal;
use Test::More;
use lib 't/lib';
BEGIN {
$ENV{DANCER_ENVIRONMENT} = 'memcached';
eval 'use Cache::Memcached';
plan skip_all => "Cache::Memcached required to run these tests" if $@;
eval 'use Dancer2::Session::Memcached 0.003';
t/session-mongodb.t view on Meta::CPAN
use strict;
use warnings;
use Test::Fatal;
use Test::More;
use lib 't/lib';
BEGIN {
$ENV{DANCER_ENVIRONMENT} = 'mongodb';
eval 'use MongoDB';
plan skip_all => "MongoDB required to run these tests" if $@;
eval 'use Dancer2::Session::MongoDB';
t/session-psgi.t view on Meta::CPAN
use strict;
use warnings;
use Test::Fatal;
use Test::More;
use lib 't/lib';
BEGIN {
eval 'use Dancer2::Session::PSGI';
plan skip_all => "Dancer2::Session::PSGI required to run these tests" if $@;
$ENV{DANCER_APPHANDLER} = 'PSGI';
}
diag "Dancer2::Session::PSGI $Dancer2::Session::PSGI::VERSION";
t/session-redis.t view on Meta::CPAN
use strict;
use warnings;
use Test::Fatal;
use Test::More;
use lib 't/lib';
BEGIN {
$ENV{DANCER_ENVIRONMENT} = 'redis';
eval 'use Redis';
plan skip_all => "Redis required to run these tests" if $@;
eval 'use Dancer2::Session::Redis 0.008';
t/session-sereal.t view on Meta::CPAN
use strict;
use warnings;
use Test::Fatal;
use Test::More;
use lib 't/lib';
BEGIN {
eval 'use Dancer2::Session::Sereal';
plan skip_all => "Dancer2::Session::Sereal required to run these tests" if $@;
}
diag "Dancer2::Session::Sereal $Dancer2::Session::Sereal::VERSION";
t/session-simple.t view on Meta::CPAN
use strict;
use warnings;
use Test::Fatal;
use Test::More;
use lib 't/lib';
use Tests;
Tests::run_tests( { session => 'Simple' } );
done_testing;
t/session-yaml.t view on Meta::CPAN
use strict;
use warnings;
use Test::Fatal;
use Test::More;
use lib 't/lib';
BEGIN {
eval 'use Dancer2::Session::YAML';
plan skip_all => "Dancer2::Session::YAML required to run these tests" if $@;
}
diag "Dancer2::Session::YAML $Dancer2::Session::YAML::VERSION";
( run in 1.972 second using v1.01-cache-2.11-cpan-54e63673c56 )