1package Config::MySQL;
2
3use warnings;
4use strict;
5
6=head1 NAME
7
8Config::MySQL - Read and write MySQL-style configuration files
9
10=head1 VERSION
11
12Version 0.01
13
14=cut
15
16our $VERSION = '0.02';
17
18=head1 DESCRIPTION
19
20This module extends L<Config::INI> to support reading and writing MySQL-style
21configuration files.  Although deceptively similar to standard C<.INI> files,
22they can include bare boolean options with no value assignment and additional
23features like C<!include> and C<!includedir>.
24
25=head1 SEE ALSO
26
27=over 4
28
29=item L<Config::INI>
30
31=item L<MySQL::Config>
32
33=item L<Config::Extend::MySQL>
34
35=back
36
37=head1 AUTHOR
38
39Iain Arnell, C<< <iarnell at gmail.com> >>
40
41=head1 BUGS
42
43Please report any bugs or feature requests to C<bug-config-ini-mysql at
44rt.cpan.org>, or through the web interface at
45L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Config-MySQL>.  I will be
46notified, and then you'll automatically be notified of progress on your bug as
47I make changes.
48
49=head1 SUPPORT
50
51You can find documentation for this module with the perldoc command.
52
53    perldoc Config::MySQL
54
55You can also look for information at:
56
57=over 4
58
59=item * RT: CPAN's request tracker
60
61L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Config-MySQL>
62
63=item * AnnoCPAN: Annotated CPAN documentation
64
65L<http://annocpan.org/dist/Config-MySQL>
66
67=item * CPAN Ratings
68
69L<http://cpanratings.perl.org/d/Config-MySQL>
70
71=item * Search CPAN
72
73L<http://search.cpan.org/dist/Config-MySQL/>
74
75=back
76
77=head1 ACKNOWLEDGEMENTS
78
79Thanks to Ricardo Signes for Config-INI.
80
81=head1 COPYRIGHT & LICENSE
82
83Copyright 2010 Iain Arnell.
84
85This program is free software; you can redistribute it and/or modify it
86under the terms of either: the GNU General Public License as published
87by the Free Software Foundation; or the Artistic License.
88
89See http://dev.perl.org/licenses/ for more information.
90
91=cut
92
931;    # End of Config::MySQL
94