Codebase list libjson-validator-perl / c704a5f
Released version 0.60 - Can use TO_JSON() when validating perl objects Martin Renvoize 8 years ago
4 changed file(s) with 21 addition(s) and 14 deletion(s). Raw diff Collapse all Expand all
00 Revision history for perl distribution JSON-Validator
11
2 0.60 Not Released
2 0.60 2015-11-09T14:35:56+0000
33 - Can use TO_JSON() when validating perl objects
44
55 0.59 2015-10-14T17:19:53+0200
00 # Generated by git-ship. See 'git-ship --man' for help or https://github.com/jhthorsen/app-git-ship
11 use ExtUtils::MakeMaker;
22 WriteMakefile(
3 NAME => 'JSON::Validator',
4 AUTHOR => 'Jan Henning Thorsen <jhthorsen@cpan.org>',
5 LICENSE => 'artistic_2',
3 NAME => 'JSON::Validator',
4 AUTHOR => 'Jan Henning Thorsen <jhthorsen@cpan.org>',
5 LICENSE => 'artistic_2',
66 ABSTRACT_FROM => 'lib/JSON/Validator.pm',
7 VERSION_FROM => 'lib/JSON/Validator.pm',
8 EXE_FILES => [qw( )],
9 META_MERGE => {
7 VERSION_FROM => 'lib/JSON/Validator.pm',
8 EXE_FILES => [qw( )],
9 META_MERGE => {
1010 resources => {
1111 bugtracker => 'https://github.com/jhthorsen/json-validator/issues',
12 homepage => 'https://github.com/jhthorsen/json-validator',
12 homepage => 'https://github.com/jhthorsen/json-validator',
1313 repository => 'https://github.com/jhthorsen/json-validator.git',
1414 },
1515 },
16 BUILD_REQUIRES => {'Test::More' => '0.88', 'Test::Warnings' => '0.016'},
17 PREREQ_PM => {'Mojolicious' => '6.00'},
18 test => {TESTS => 't/*.t'},
16 BUILD_REQUIRES => {
17 'Test::More' => '0.88',
18 'Test::Warnings' => '0.016'
19 }
20 ,
21 PREREQ_PM => {
22 'Mojolicious' => '6.00'
23 }
24 ,
25 test => { TESTS => 't/*.t' },
1926 );
11 JSON::Validator - Validate data against a JSON schema
22
33 VERSION
4 0.59
4 0.60
55
66 SYNOPSIS
77 use JSON::Validator;
55
66 =head1 VERSION
77
8 0.59
8 0.60
99
1010 =head1 SYNOPSIS
1111
139139 use constant WARN_ON_MISSING_FORMAT => $ENV{JSON_VALIDATOR_WARN_ON_MISSING_FORMAT}
140140 || $ENV{SWAGGER2_WARN_ON_MISSING_FORMAT} ? 1 : 0;
141141
142 our $VERSION = '0.59';
142 our $VERSION = '0.60';
143143 our @EXPORT_OK = qw( validate_json );
144144
145145 my $HTTP_SCHEME_RE = qr{^https?:};