Updated task
[catagits/Task-Catalyst.git] / Catalyst.pm
1 package Task::Catalyst;
2
3 use strict;
4
5 our $VERSION = '1.20';
6
7 =head1 NAME
8
9 Task::Catalyst - All you need to start with Catalyst
10
11 =head1 SYNOPSIS
12
13 C<perl -MCPAN -e 'install Task::Catalyst'>
14
15 =head1 DESCRIPTION
16
17 Installs everything you need to write serious Catalyst applications.
18
19 L<Catalyst>
20
21 L<Catalyst::Plugin::FormValidator>
22
23 L<Catalyst::Plugin::FormValidator::Simple>
24
25 L<Catalyst::Plugin::FillInForm>
26
27 L<Catalyst::Plugin::Prototype>
28
29 L<Catalyst::Plugin::Singleton>
30
31 L<Catalyst::Plugin::DefaultEnd>
32
33 L<Catalyst::Plugin::SubRequest>
34
35 L<Catalyst::Plugin::Session>
36
37 L<Catalyst::Plugin::Session::Store::File>
38
39 L<Catalyst::Plugin::Session::State::Cookie>
40
41 L<Catalyst::Plugin::Session::State::URI>
42
43 L<Catalyst::Plugin::I18N>
44
45 L<Catalyst::Model::DBIC::Plain>
46
47 L<Catalyst::Model::DBIC>
48
49 L<Catalyst::View::TT>
50
51 L<Test::WWW::Mechanize::Catalyst>
52
53 L<DBD::SQLite>
54
55 L<YAML>
56
57 =head1 AUTHOR
58
59 Sebastian Riedel, C<sri@oook.de>
60
61 =head1 LICENSE
62
63 This library is free software, you can redistribute it and/or modify it under
64 the same terms as Perl itself.
65
66 =cut
67
68 1;