-
Notifications
You must be signed in to change notification settings - Fork 24
/
Makefile.PL
72 lines (65 loc) · 2.86 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# IMPORTANT: if you delete this file your app will not work as expected
use inc::Module::Install;
BEGIN {
eval 'use Module::Install::Catalyst';
die 'Please install Module::Install::Catalyst and run perl Makefile.PL again' if $@;
}
name 'ShinyCMS';
all_from 'lib/ShinyCMS.pm';
requires 'Catalyst::Runtime' => '5.80004';
requires 'Catalyst::Plugin::ConfigLoader';
requires 'Catalyst::Plugin::Static::Simple';
requires 'Catalyst::Action::RenderView';
requires 'parent';
requires 'Config::General';
requires (
'Catalyst::Plugin::Authentication' => '0',
'Catalyst::Plugin::Session' => '0',
'Catalyst::Plugin::Session::Store::DBIC' => '0',
'Catalyst::Plugin::Session::State::Cookie' => '0',
'Catalyst::Authentication::Realm::SimpleDB' => '0',
'Catalyst::View::TT' => '0',
'Catalyst::View::Email' => '0',
'Catalyst::TraitFor::Request::BrowserDetect' => '0',
'CatalystX::RoleApplicator' => '0',
'DBIx::Class::EncodedColumn' => '0',
'DBIx::Class::Schema::Loader' => '0',
'DBIx::Class::TimeStamp' => '0',
'Method::Signatures::Simple' => '0',
'MooseX::NonMoose' => '0',
'MooseX::MarkAsMethods' => '0',
'Captcha::reCAPTCHA' => '0',
'Email::Sender' => '0.102360', # gets rid of -alias/-excludes warnings
'Email::Valid' => '0',
'File::Pid' => '0',
'HTML::Restrict' => '0',
'HTML::TagCloud' => '0',
'HTML::TreeBuilder' => '0',
'Method::Signatures::Simple' => '0',
'Net::Akismet' => '0',
'Net::Domain::TLD' => '0',
'Text::CSV::Simple' => '0',
'URI::Encode' => '0',
'XML::Feed' => '0',
);
test_requires (
'Devel::Cover' => '0',
'Devel::Cover::Report::Codecov' => '0',
'LWP::Protocol::https' => '0',
'Test::Exception' => '0',
'Test::MockObject' => '0',
'Test::More' => '0',
'Test::Perl::Critic' => '0',
'Test::Pod' => '0',
'Test::Pod::Coverage' => '0',
'Test::WWW::Mechanize::Catalyst::WithContext' => '0',
);
recommends (
'FCGI' => '0',
'FCGI::ProcManager' => '0',
'Template::Plugin::Markdown' => '0',
);
catalyst;
install_script glob( 'script/*.pl' );
auto_install;
WriteAll;