Move test app
[catagits/Catalyst-Authentication-Store-LDAP.git] / t / lib / Test-Session-Broken / Makefile.PL
1 #!/usr/bin/env perl
2 # IMPORTANT: if you delete this file your app will not work as
3 # expected.  You have been warned.
4 use inc::Module::Install;
5 use 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
9 name 'Test-LDAP';
10 all_from 'lib/Test/LDAP.pm';
11
12 requires 'Catalyst::Runtime' => '5.80024';
13
14 requires 'Catalyst::Plugin::Authentication';
15 requires 'Catalyst::Plugin::Authorization::Roles'; 
16 requires 'Catalyst::Authentication::Store::LDAP';
17
18 requires 'Catalyst::Plugin::Session';
19 requires 'Catalyst::Plugin::Session::State::Cookie';
20 requires 'Catalyst::Plugin::Session::Store::FastMmap';
21
22 requires 'Catalyst::Plugin::ConfigLoader';
23 requires 'Catalyst::Plugin::Static::Simple';
24 requires 'Catalyst::Action::RenderView';
25
26 requires 'Moose';
27 requires 'namespace::autoclean';
28 #requires 'Config::JSON'; # This should reflect the config file format you've chosen
29                  # See Catalyst::Plugin::ConfigLoader for supported formats
30 test_requires 'Test::More' => '0.88';
31 catalyst;
32
33 install_script glob('script/*.pl');
34 auto_install;
35 WriteAll;