empty data fields before re-appending
[scpubgit/stemmatology.git] / stemmaweb / Makefile.PL
CommitLineData
dbcf12a6 1#!/usr/bin/env perl
2# IMPORTANT: if you delete this file your app will not work as
3# expected. You have been warned.
4use inc::Module::Install;
5use Module::Install::Catalyst; # Complain loudly if you don't have
6 # Catalyst::Devel installed or haven't said
7 # 'make dist' to create a standalone tarball.
8
5c9ecf66 9name 'stemmaweb';
10all_from 'lib/stemmaweb.pm';
dbcf12a6 11
12requires 'Catalyst::Runtime' => '5.90002';
13requires 'Catalyst::Plugin::ConfigLoader';
187adb4e 14requires 'Catalyst::Plugin::StackTrace';
dbcf12a6 15requires 'Catalyst::Plugin::Static::Simple';
9c52877e 16requires 'Catalyst::Plugin::Unicode::Encoding';
dbcf12a6 17requires 'Catalyst::Action::RenderView';
27a20fbe 18requires 'Catalyst::Authentication::Credential::OpenID';
3837c155 19requires 'Catalyst::Model::KiokuDB';
6b70c348 20requires 'Catalyst::View::Download::Plain';
21requires 'Catalyst::View::JSON';
22requires 'Catalyst::View::TT';
0973c1be 23requires 'Catalyst::View::Email::Template';
d1ba091f 24## Auth:
25requires 'Catalyst::Plugin::Authentication';
26requires 'Catalyst::Plugin::Session';
27requires 'Catalyst::Plugin::Session::Store::File';
28requires 'Catalyst::Plugin::Session::State::Cookie';
3e97c22c 29requires 'CatalystX::Controller::Auth' => '0.22';
775e7a0e 30requires 'Catalyst::TraitFor::Controller::reCAPTCHA';
484ba408 31requires 'LWP::Protocol::https';
d1ba091f 32##
dbcf12a6 33requires 'Moose';
bffafb73 34requires 'TryCatch';
dbcf12a6 35requires 'namespace::autoclean';
36requires 'Config::General'; # This should reflect the config file format you've chosen
37 # See Catalyst::Plugin::ConfigLoader for supported formats
38test_requires 'Test::More' => '0.88';
39catalyst;
40
41install_script glob('script/*.pl');
42auto_install;
43WriteAll;