Stripped app
[catagits/Catalyst-Authentication-Store-LDAP.git] / Test-Session-Broken / Makefile.PL
CommitLineData
ecd7abea 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
9name 'Test-LDAP';
10all_from 'lib/Test/LDAP.pm';
11
12requires 'Catalyst::Runtime' => '5.80024';
13
14requires 'Catalyst::Plugin::Authentication';
15requires 'Catalyst::Plugin::Authorization::Roles';
16requires 'Catalyst::Authentication::Store::LDAP';
17
18requires 'Catalyst::Plugin::Session';
19requires 'Catalyst::Plugin::Session::State::Cookie';
20requires 'Catalyst::Plugin::Session::Store::FastMmap';
21
22requires 'Catalyst::Plugin::ConfigLoader';
23requires 'Catalyst::Plugin::Static::Simple';
24requires 'Catalyst::Action::RenderView';
25
ecd7abea 26requires 'Moose';
27requires 'namespace::autoclean';
2148a3cd 28#requires 'Config::JSON'; # This should reflect the config file format you've chosen
ecd7abea 29 # See Catalyst::Plugin::ConfigLoader for supported formats
30test_requires 'Test::More' => '0.88';
31catalyst;
32
33install_script glob('script/*.pl');
34auto_install;
35WriteAll;