|
NAMEMooseX::Types::JSON - JSON datatype for MooseSYNOPSISpackage Foo; use Moose; use Moose::Util::TypeConstraints; use MooseX::Types::JSON qw( JSON ); has config => ( is => 'rw', isa => JSON ); has options => ( is => 'rw', isa => relaxedJSON ); String type constraints that match valid and relaxed JSON. For the meaning of 'relaxed' see JSON. All the heavy lifting in the background is also done by JSON. Coercions from Defined types are included.
CONTRIBUTORSSteve HuffAUTHORMichael LangnerCONTRIBUTINGIf you'd like to contribute, just fork my repository (<http://github.com/cpan-mila/perl-moosex-types-json>) on Github, commit your changes and send me a pull request.BUGSPlease report any bugs or feature requests at <http://github.com/cpan-mila/perl-moosex-types-json/issues>.COPYRIGHT & LICENSECopyright 2014 Michael Langner, all rights reserved.This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Visit the GSP FreeBSD Man Page Interface. |