Updated Task::Catalyst
[catagits/Task-Catalyst.git] / Catalyst.pm
CommitLineData
f930a8cf 1package Task::Catalyst;
2
3use strict;
4
393c3203 5our $VERSION = '1.40';
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
393c3203 21L<Catalyst::Plugin::HTML::Widget>
f930a8cf 22
393c3203 23L<Catalyst::Plugin::StackTrace>
f930a8cf 24
25L<Catalyst::Plugin::Prototype>
26
27L<Catalyst::Plugin::Singleton>
28
29L<Catalyst::Plugin::DefaultEnd>
30
31L<Catalyst::Plugin::SubRequest>
32
33L<Catalyst::Plugin::Session>
34
35L<Catalyst::Plugin::Session::Store::File>
36
37L<Catalyst::Plugin::Session::State::Cookie>
38
39L<Catalyst::Plugin::Session::State::URI>
40
393c3203 41L<Catalyst::Plugin::Authentication>
42
43L<Catalyst::Plugin::Authentication::Store::DBIC>
44
45L<Catalyst::Plugin::Authentication::Store::Htpasswd>
46
47L<Catalyst::Plugin::Authorization::ACL>
48
49L<Catalyst::Plugin::Authorization::Roles>
50
dadc636c 51L<Catalyst::Plugin::I18N>
52
289fb657 53L<Catalyst::Plugin::XMLRPC>
54
c1db1bd0 55L<Catalyst::Plugin::Pluggable>
56
f930a8cf 57L<Catalyst::Model::DBIC::Plain>
58
59L<Catalyst::Model::DBIC>
60
61L<Catalyst::View::TT>
62
63L<Test::WWW::Mechanize::Catalyst>
64
65L<DBD::SQLite>
66
67L<YAML>
68
69=head1 AUTHOR
70
71Sebastian Riedel, C<sri@oook.de>
72
73=head1 LICENSE
74
75This library is free software, you can redistribute it and/or modify it under
76the same terms as Perl itself.
77
78=cut
79
801;