The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

ExtUtils::MakeMaker::JSONMETA - put JSON in your META.yml (with EU::MM)

SYNOPSIS

In your Makefile.PL:

  use ExtUtils::MakeMaker;
  eval { require ExtUtils::MakeMaker::JSONMETA; };

  WriteMakefile(...);

If EU::MM::JSONMETA cannot be loaded (for example, because a user who is installing your module does not have it or JSON installed), things will continue as usual. If it can be loaded, any META.yml file produced will contain JSON.

SEE ALSO

JSON::CPAN::META

AUTHOR AND COPYRIGHT

Copyright (C) 2009, Ricardo Signes, rjbs@cpan.org

This is free software, distributed under the same terms as perl5.