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