adding in the dump_session method to the Store classes
[catagits/Web-Session.git] / Makefile.PL
CommitLineData
3b4205cd 1use strict;
2use warnings;
3use inc::Module::Install;
4
d94ab365 5name 'Plack-Middleware-Session';
6all_from 'lib/Plack/Middleware/Session.pm';
3b4205cd 7license 'perl';
8
9# prereqs
10requires 'Plack' => '0.9021';
11requires 'Plack::Request' => '0.08';
12
13# for session ID gen
14requires 'Digest::SHA' => '0';
15
16# things the tests need
17build_requires 'Test::More' => '0.88';
6d601172 18build_requires 'Test::Requires' => '0';
3b4205cd 19
20tests_recursive;
21auto_install;
22
23WriteAll();
24