CPAN::Meta::Validator - validate CPAN distribution metadata structures
| Use Case | Command | Description |
|---|---|---|
| Validate a META.json file | my $cmv = CPAN::Meta::Validator->new($struct) |
Create a validator object from a decoded metadata structure |
| Check if metadata is valid | $cmv->is_valid |
Returns true if the metadata structure is valid |
| Get validation errors | $cmv->errors |
Returns a list of descriptive error messages |
version 2.150010
my $struct = decode_json_file('META.json');
my $cmv = CPAN::Meta::Validator->new( $struct );
unless ( $cmv->is_valid ) {
my $msg = "Invalid META structure. Errors found:\n";
$msg .= join( "\n", $cmv->errors );
die $msg;
}
Note: The link in the code block is preserved from the original man page but is not part of the executable code — copy only the plain text for actual use.
This module validates a CPAN Meta structure against the version of the the specification claimed in the "meta-spec" field of the structure.
my $cmv = CPAN::Meta::Validator->new( $struct )
The constructor must be passed a metadata structure.
if ( $cmv->is_valid ) {
...
}
Returns a boolean value indicating whether the metadata provided is valid.
warn( join "\n", $cmv->errors );
Returns a list of errors seen during validation.
Please report any bugs or feature using the CPAN Request Tracker. Bugs can be submitted through the web interface at http://rt.cpan.org/Dist/Display.html?Queue=CPAN-Meta
When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature.
This software is copyright (c) 2010 by David Golden, Ricardo Signes, Adam Kennedy and Contributors.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
Generated by phpman v4.9.26-5-g7740029 · Markdown · JSON · MCP Author: Che Dong Under GNU General Public License
2026-08-23 10:16 @216.73.216.102
CrawledBy Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)