Added high performance version of the Sessions code as a branch
[catagits/Catalyst-Plugin-Session.git] / Makefile.PL
1 use strict;
2 use ExtUtils::MakeMaker;
3
4 use strict;
5 use warnings;
6
7 WriteMakefile(
8     NAME         => 'Catalyst-Plugin-SessionHP',
9     VERSION_FROM => 'lib/Catalyst/Plugin/SessionHP.pm',
10     PREREQ_PM    => {
11
12         'Catalyst::Runtime'                => '5.7010',
13         'Catalyst::Plugin::Authentication' => '0.10011',
14
15         'Digest::SHA1'      => 0,
16         'File::Spec'        => 0,
17         'File::Temp'        => 0,
18         'Object::Signature' => 0,
19         'MRO::Compat'       => 0,
20         'Clone'             => 0,
21         'Carp'              => 0,
22
23         # an indirect dep. needs a certain version.
24         'Tie::RefHash' => '1.34',
25
26         'Test::More'       => 0,
27         'Test::Deep'       => 0,
28         'Test::Exception'  => 0,
29         'Test::MockObject' => '1.01',
30     },
31 );
32