Updated Task::Catalyst
[catagits/Task-Catalyst.git] / Catalyst.pm
CommitLineData
f930a8cf 1package Task::Catalyst;
2
3use strict;
4
250b923b 5our $VERSION = '1.50';
f930a8cf 6
7=head1 NAME
8
9Task::Catalyst - All you need to start with Catalyst
10
11=head1 SYNOPSIS
12
13C<perl -MCPAN -e 'install Task::Catalyst'>
14
15=head1 DESCRIPTION
16
17Installs everything you need to write serious Catalyst applications.
18
19L<Catalyst>
20
250b923b 21L<Catalyst::Log::Log4perl>
22
393c3203 23L<Catalyst::Plugin::HTML::Widget>
f930a8cf 24
393c3203 25L<Catalyst::Plugin::StackTrace>
f930a8cf 26
27L<Catalyst::Plugin::Prototype>
28
29L<Catalyst::Plugin::Singleton>
30
31L<Catalyst::Plugin::DefaultEnd>
32
33L<Catalyst::Plugin::SubRequest>
34
35L<Catalyst::Plugin::Session>
36
37L<Catalyst::Plugin::Session::Store::File>
38
39L<Catalyst::Plugin::Session::State::Cookie>
40
41L<Catalyst::Plugin::Session::State::URI>
42
393c3203 43L<Catalyst::Plugin::Authentication>
44
45L<Catalyst::Plugin::Authentication::Store::DBIC>
46
47L<Catalyst::Plugin::Authentication::Store::Htpasswd>
48
49L<Catalyst::Plugin::Authorization::ACL>
50
51L<Catalyst::Plugin::Authorization::Roles>
52
dadc636c 53L<Catalyst::Plugin::I18N>
54
289fb657 55L<Catalyst::Plugin::XMLRPC>
56
c1db1bd0 57L<Catalyst::Plugin::Pluggable>
58
f930a8cf 59L<Catalyst::Model::DBIC::Plain>
60
61L<Catalyst::Model::DBIC>
62
63L<Catalyst::View::TT>
64
65L<Test::WWW::Mechanize::Catalyst>
66
67L<DBD::SQLite>
68
69L<YAML>
70
71=head1 AUTHOR
72
73Sebastian Riedel, C<sri@oook.de>
74
75=head1 LICENSE
76
77This library is free software, you can redistribute it and/or modify it under
78the same terms as Perl itself.
79
80=cut
81
821;