The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Module::Build::JSONMETA - (depreacted) write META.json instead of META.yml

SYNOPSIS

Achtung! This library will soon be obsolete as Module::Build moves to use the official CPAN::Meta::Spec JSON files.

This interface may be changed in the future if someone with more Module::Build expertise steps forward.

  ----- in Build.PL -----

  use Module::Build;
  use Module::Build::JSONMETA;

  my $class = Module::Build->subclass(
    code => Module::Build::JSONMETA->code,
  );

  my $build = $class->new( ... );

  $build->create_build_script;