allow parameters to be referenced from defaults in the same param list
[p5sagit/Function-Parameters.git] / Makefile.PL
1 use 5.014;
2 use strict;
3 use warnings;
4 use ExtUtils::MakeMaker;
5
6 WriteMakefile(
7     NAME                => 'Function::Parameters',
8     AUTHOR              => q{Lukas Mai <l.mai@web.de>},
9     VERSION_FROM        => 'lib/Function/Parameters.pm',
10     ABSTRACT_FROM       => 'lib/Function/Parameters.pm',
11     CONFIGURE_REQUIRES => {
12         'ExtUtils::MakeMaker' => '6.56',
13     },
14     LICENSE => 'perl',
15     PL_FILES => {},
16     BUILD_REQUIRES => {
17         'Dir::Self' => 0,
18         'Test::More' => 0,
19     },
20     PREREQ_PM => {
21         'Carp' => 0,
22         'XSLoader' => 0,
23         'warnings' => 0,
24         'strict' => 0,
25     },
26     MIN_PERL_VERSION => '5.14.0',
27     dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
28     clean               => { FILES => 'Function-Parameters-*' },
29 );