integrate login/register functionality more properly with app
[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';
14requires 'Catalyst::Plugin::Static::Simple';
9c52877e 15requires 'Catalyst::Plugin::Unicode::Encoding';
dbcf12a6 16requires 'Catalyst::Action::RenderView';
3837c155 17requires 'Catalyst::Model::KiokuDB';
6b70c348 18requires 'Catalyst::View::Download::Plain';
19requires 'Catalyst::View::JSON';
20requires 'Catalyst::View::TT';
0973c1be 21requires 'Catalyst::View::Email::Template';
d1ba091f 22## Auth:
23requires 'Catalyst::Plugin::Authentication';
24requires 'Catalyst::Plugin::Session';
25requires 'Catalyst::Plugin::Session::Store::File';
26requires 'Catalyst::Plugin::Session::State::Cookie';
3e97c22c 27requires 'CatalystX::Controller::Auth' => '0.22';
775e7a0e 28requires 'Catalyst::TraitFor::Controller::reCAPTCHA';
484ba408 29requires 'LWP::Protocol::https';
d1ba091f 30##
dbcf12a6 31requires 'Moose';
bffafb73 32requires 'TryCatch';
dbcf12a6 33requires 'namespace::autoclean';
34requires 'Config::General'; # This should reflect the config file format you've chosen
35 # See Catalyst::Plugin::ConfigLoader for supported formats
36test_requires 'Test::More' => '0.88';
37catalyst;
38
39install_script glob('script/*.pl');
40auto_install;
41WriteAll;