forked from chizmeeple/catalyst-plugin-errorcatcher
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile.PL
More file actions
45 lines (40 loc) · 1.63 KB
/
Makefile.PL
File metadata and controls
45 lines (40 loc) · 1.63 KB
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
36
37
38
39
40
41
42
43
44
45
# Load the Module::Install bundled in ./inc/
use inc::Module::Install '0.87';
# Define metadata
name 'Catalyst-Plugin-ErrorCatcher';
version '0.0.6.5';
all_from 'lib/Catalyst/Plugin/ErrorCatcher.pm';
# Specific dependencies
build_requires(
'Test::More' => '0.92', # core since 5.006002
'Test::Simple' => '0.88',
'Catalyst::Plugin::Authentication' => 0,
'Catalyst::Plugin::ConfigLoader' => 0,
'Catalyst::Plugin::StackTrace' => 0,
'Catalyst::Runtime' => '5.71001',
'Catalyst::Test' => 0,
'Config::General' => 0,
'DateTime' => '0.42',
'File::Find::Rule' => '0.30',
'File::Path' => 0,
'File::Slurp' => '9999.12',
'FindBin' => 0, # core since 5.00307
'MIME::Lite' => '3.023',
'Path::Class' => '0.16',
'Sys::Hostname' => 0, # core since perl 5
);
requires(
'Catalyst::Runtime' => '5.71001',
'Class::Data::Accessor' => 0,
'IO::File' => 0, # core since 5.00307
'MRO::Compat' => 0,
'version' => 0, # core since 5.009
);
recommends(
'DateTime' => '0.42',
'File::Slurp' => '9999.12',
'MIME::Lite' => '3.023',
'Path::Class' => '0.16',
);
auto_install;
WriteAll;