Catalyst-Model-Data-MuForm

 view release on metacpan or  search on metacpan

META.yml  view on Meta::CPAN

---
abstract: 'Model adaptor for Data::MuForm'
author:
  - 'John Napiorkowski <jjnapiork@cpan.org>'
build_requires:
  Catalyst: '5.90060'
  Data::MuForm: '0'
  HTTP::Request::Common: '0'
  Moo: '2.003000'
  Test::Most: '0'
configure_requires:
  ExtUtils::MakeMaker: '0'
dynamic_config: 0
generated_by: 'Dist::Zilla version 6.007, CPAN::Meta::Converter version 2.150005'
license: perl
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: '1.4'

Makefile.PL  view on Meta::CPAN

  "NAME" => "Catalyst::Model::Data::MuForm",
  "PREREQ_PM" => {
    "Catalyst" => "5.90060",
    "Module::Pluggable::Object" => 0,
    "Moo" => "2.003000",
    "Template::Tiny" => 0
  },
  "TEST_REQUIRES" => {
    "Catalyst" => "5.90060",
    "Data::MuForm" => 0,
    "HTTP::Request::Common" => 0,
    "Moo" => "2.003000",
    "Test::Most" => 0
  },
  "VERSION" => "0.001",
  "test" => {
    "TESTS" => "t/*.t"
  }
);


my %FallbackPrereqs = (
  "Catalyst" => "5.90060",
  "Data::MuForm" => 0,
  "HTTP::Request::Common" => 0,
  "Module::Pluggable::Object" => 0,
  "Moo" => "2.003000",
  "Template::Tiny" => 0,
  "Test::Most" => 0
);


unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
  delete $WriteMakefileArgs{TEST_REQUIRES};
  delete $WriteMakefileArgs{BUILD_REQUIRES};

dist.ini  view on Meta::CPAN

[Prereqs]
Catalyst = 5.90060
Moo = 2.003000
Module::Pluggable::Object = 0
Template::Tiny = 0

[Prereqs / TestRequires]
Test::Most = 0
Data::MuForm = 0
Catalyst = 5.90060
HTTP::Request::Common = 0
Moo = 2.003000

t/basic.t  view on Meta::CPAN

use Test::Most;
use HTTP::Request::Common;
use Scalar::Util qw/refaddr/;

BEGIN {

  package MyApp::Form::Email;
  $INC{'MyApp/Form/Email.pm'} = __FILE__;

  use Moo;
  use Data::MuForm::Meta;
  extends 'Data::MuForm';



( run in 0.644 second using v1.01-cache-2.11-cpan-de7293f3b23 )