-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
36 lines (26 loc) · 909 Bytes
/
Makefile.PL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
use strict;
use warnings;
use inc::Module::Install;
use Module::Install::AuthorTests;
use Module::Install::AuthorRequires;
license 'perl';
name 'Catalyst-TraitFor-Request-Params-Hashed';
all_from 'lib/Catalyst/TraitFor/Request/Params/Hashed.pm';
author q{Oleg Kostyuk <[email protected]>};
requires 'Catalyst' => '5.80';
requires 'Moose';
requires 'MooseX::Types';
requires 'MooseX::Types::Moose';
requires 'namespace::autoclean';
test_requires 'Test::More';
author_requires 'Test::EOL' => '0.3';
author_requires 'Test::NoTabs';
author_requires 'Test::Pod' => '1.14';
author_requires 'Test::Pod::Coverage' => '1.08';
resources repository => 'git://github.com/cub-uanic/Catalyst-TraitFor-Request-Params-Hashed.git';
tests 't/*.t';
author_tests 't/author/*.t';
if ($Module::Install::AUTHOR) {
system("pod2text lib/Catalyst/TraitFor/Request/Params/Hashed.pm > README") and die $!;
}
WriteAll;