Bump version and update Changes
[apache2-authzcaps.git] / Makefile.PL
1 use ExtUtils::MakeMaker;
2
3 WriteMakefile(
4 NAME => 'Apache2::AuthzCaps',
5 VERSION_FROM => 'lib/Apache2/AuthzCaps.pm',
6 ABSTRACT_FROM => 'lib/Apache2/AuthzCaps.pm',
7 AUTHOR => 'Marius Gavrilescu <marius@ieval.ro>',
8 MIN_PERL_VERSION => '5.14.0',
9 LICENSE => 'perl',
10 SIGN => 1,
11 PREREQ_PM => {
12 qw/YAML::Any 0/,
13 },
14 META_MERGE => {
15 dynamic_config => 0,
16 recommends => {
17 qw/Apache2::RequestRec 0/,
18 },
19 resources => {
20 repository => 'https://git.ieval.ro/?p=apache2-authzcaps.git',
21 }
22 }
23 );
This page took 0.021389 seconds and 4 git commands to generate.