Updated task
[catagits/Task-Catalyst.git] / Catalyst.pm
CommitLineData
f930a8cf 1package Task::Catalyst;
2
3use strict;
4
289fb657 5our $VERSION = '1.30';
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
21L<Catalyst::Plugin::FormValidator>
22
23L<Catalyst::Plugin::FormValidator::Simple>
24
25L<Catalyst::Plugin::FillInForm>
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
dadc636c 43L<Catalyst::Plugin::I18N>
44
289fb657 45L<Catalyst::Plugin::XMLRPC>
46
c1db1bd0 47L<Catalyst::Plugin::Pluggable>
48
f930a8cf 49L<Catalyst::Model::DBIC::Plain>
50
51L<Catalyst::Model::DBIC>
52
53L<Catalyst::View::TT>
54
55L<Test::WWW::Mechanize::Catalyst>
56
57L<DBD::SQLite>
58
59L<YAML>
60
61=head1 AUTHOR
62
63Sebastian Riedel, C<sri@oook.de>
64
65=head1 LICENSE
66
67This library is free software, you can redistribute it and/or modify it under
68the same terms as Perl itself.
69
70=cut
71
721;