fb9b95c2af97eabeafebd7bb3840f1bd83c67568
[catagits/Task-Catalyst.git] / lib / Task / Catalyst.pm
1 package Task::Catalyst;
2
3 use strict;
4 use warnings;
5
6 our $VERSION = '2.0000';
7
8 =head1 NAME
9
10 Task::Catalyst - All you need to start with Catalyst
11
12 =head1 SYNOPSIS
13
14 C<perl -MCPAN -e 'install Task::Catalyst'>
15
16 =head1 DESCRIPTION
17
18 Installs everything you need to write serious Catalyst applications.
19
20 L<Catalyst>
21
22 L<Catalyst::Log::Log4perl>
23
24 L<Catalyst::Plugin::HTML::Widget>
25
26 L<Catalyst::Plugin::StackTrace>
27
28 L<Catalyst::Plugin::Prototype>
29
30 L<Catalyst::Plugin::DefaultEnd>
31
32 L<Catalyst::Plugin::SubRequest>
33
34 L<Catalyst::Plugin::Session>
35
36 L<Catalyst::Plugin::Session::Store::File>
37
38 L<Catalyst::Plugin::Session::State::Cookie>
39
40 L<Catalyst::Plugin::Session::State::URI>
41
42 L<Catalyst::Plugin::Authentication>
43
44 L<Catalyst::Plugin::Authentication::Store::DBIC>
45
46 L<Catalyst::Plugin::Authentication::Store::Htpasswd>
47
48 L<Catalyst::Plugin::Authorization::ACL>
49
50 L<Catalyst::Plugin::Authorization::Roles>
51
52 L<Catalyst::Plugin::I18N>
53
54 L<Catalyst::Model::DBIC::Schema>
55
56 L<Catalyst::View::TT>
57
58 L<Test::WWW::Mechanize::Catalyst>
59
60 L<DBD::SQLite>
61
62 =head1 AUTHOR
63
64 The Catalyst Core Team - see http://catalyst.perl.org/
65
66 =head1 LICENSE
67
68 This library is free software, you can redistribute it and/or modify it under
69 the same terms as Perl itself.
70
71 =cut
72
73 1;