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