added example application
[catagits/CatalystX-Declare.git] / examples / MyApp-Web / Makefile.PL
CommitLineData
aa7921c5 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;
5
6name 'MyApp-Web';
7all_from 'lib/MyApp/Web.pm';
8
9requires 'CatalystX::Declare' => '0.001';
10requires 'Catalyst::Runtime' => '5.80007';
11requires 'Catalyst::Plugin::ConfigLoader';
12requires 'Catalyst::Plugin::Static::Simple';
13requires 'Catalyst::Action::RenderView';
14requires 'parent';
15requires 'Config::General'; # This should reflect the config file format you've chosen
16 # See Catalyst::Plugin::ConfigLoader for supported formats
17catalyst;
18
19install_script glob('script/*.pl');
20auto_install;
21WriteAll;