rename dist to Plack::Middleware::Session for consistency
[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';
18
19tests_recursive;
20auto_install;
21
22WriteAll();
23