forked from gitpan/HTTP-Request-Params
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.PL
More file actions
16 lines (15 loc) · 809 Bytes
/
Makefile.PL
File metadata and controls
16 lines (15 loc) · 809 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use ExtUtils::MakeMaker;
WriteMakefile (
AUTHOR => ['Casey West <casey@geeknest.com>', 'Ian Stuart <Ian.Stuart@ed.ac.uk>'],
ABSTRACT => "Retrieve GET/POST Parameters from HTTP Requests",
NAME => 'HTTP::Request::Params',
PREREQ_PM => {
'CGI' => '3.00',
'Class::Accessor::Fast' => '0.19',
'Email::MIME::ContentType' => '1.0',
'Email::MIME' => '1.42',
'HTTP::Request' => '1.40',
'HTTP::Request::Common' => '1.26',
},
VERSION_FROM => 'lib/HTTP/Request/Params.pm',
);