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