properly document JSON modules used
[p5sagit/Config-Any.git] / lib / Config / Any / JSON.pm
index 91d1531..17055f3 100644 (file)
@@ -87,16 +87,25 @@ sub load {
 
 =head2 requires_any_of( )
 
-Specifies that this modules requires one of,  L<JSON::DWIW>, L<JSON::XS>,
-L<JSON::Syck> or L<JSON> in order to work.
+Specifies that this modules requires one of, L<Cpanel::JSON::XS>,
+L<JSON::MaybeXS>, L<JSON::DWIW>, L<JSON::XS>, L<JSON::Syck>, L<JSON::PP> or
+L<JSON> in order to work.
 
 =cut
 
-sub requires_any_of { 'JSON::DWIW', 'JSON::XS', 'JSON::Syck', 'JSON::PP', 'JSON' }
+sub requires_any_of { qw(
+  Cpanel::JSON::XS
+  JSON::MaybeXS
+  JSON::DWIW
+  JSON::XS
+  JSON::Syck
+  JSON::PP
+  JSON
+) }
 
 =head1 AUTHOR
 
-Brian Cassidy E<lt>bricas@cpan.orgE<gt>
+Brian Cassidy <bricas@cpan.org>
 
 =head1 COPYRIGHT AND LICENSE
 
@@ -113,6 +122,10 @@ it under the same terms as Perl itself.
 
 =item * L<Config::Any>
 
+=item * L<Cpanel::JSON::XS>
+
+=item * L<JSON::MaybeXS>
+
 =item * L<JSON::DWIW>
 
 =item * L<JSON::XS>