App-ValidateBankAccount

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

            "ExtUtils::MakeMaker" : "0"
         }
      },
      "runtime" : {
         "requires" : {
            "BankAccount::Validator::UK" : "0.50",
            "Encode::Locale" : "1.05",
            "Moo" : "2.000000",
            "MooX::Options" : "4.023",
            "Types::Standard" : "1.000005",
            "namespace::autoclean" : "0.28",
            "perl" : "5.006"
         }
      }
   },
   "provides" : {
      "App::ValidateBankAccount" : {
         "file" : "lib/App/ValidateBankAccount.pm",
         "version" : "0.10"
      },
      "App::ValidateBankAccount::Option" : {

META.yml  view on Meta::CPAN

    version: '0.10'
  App::ValidateBankAccount::Option:
    file: lib/App/ValidateBankAccount/Option.pm
    version: '0.10'
requires:
  BankAccount::Validator::UK: '0.50'
  Encode::Locale: '1.05'
  Moo: '2.000000'
  MooX::Options: '4.023'
  Types::Standard: '1.000005'
  namespace::autoclean: '0.28'
  perl: '5.006'
resources:
  repository: https://github.com/manwar/App-ValidateBankAccount.git
version: '0.10'
x_serialization_backend: 'CPAN::Meta::YAML version 0.018'

Makefile.PL  view on Meta::CPAN

        'ExtUtils::MakeMaker' => 0,
    },
    BUILD_REQUIRES      => {
        'Test::More'    => 0,
        'Capture::Tiny' => '0.28',
    },
    PREREQ_PM => {
        'Types::Standard'            => '1.000005',
        'MooX::Options'              => '4.023',
        'Moo'                        => '2.000000',
        'namespace::autoclean'       => '0.28',
        'BankAccount::Validator::UK' => '0.50',
        'Encode::Locale'             => '1.05',
    },
    dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean => { FILES => 'App-ValidateBankAccount-*' },
    (eval { ExtUtils::MakeMaker->VERSION(6.46) } ? (META_MERGE => {
        'meta-spec' => { version => 2 },
        provides    => {
            'App::ValidateBankAccount'         => { file => 'lib/App/ValidateBankAccount.pm'       , version => '0.10' },
            'App::ValidateBankAccount::Option' => { file => 'lib/App/ValidateBankAccount/Option.pm', version => '0.10' },

lib/App/ValidateBankAccount.pm  view on Meta::CPAN


Version 0.10

=cut

use 5.006;
use Data::Dumper;
use BankAccount::Validator::UK;
use App::ValidateBankAccount::Option;
use Moo;
use namespace::autoclean;
use MooX::Options;
with 'App::ValidateBankAccount::Option';

our $DEFAULT_COUNTRY = 'uk';

=head1 DESCRIPTION

It provides command line interface to the distribution L<BankAccount::Validator::UK>.
The distribution installs script C<validate-bank-account> for you to play with.

lib/App/ValidateBankAccount/Option.pm  view on Meta::CPAN

=head1 VERSION

Version 0.10

=cut

use 5.006;
use Data::Dumper;

use Moo::Role;
use namespace::autoclean;
use Types::Standard -all;
use MooX::Options;

option country        => (is => 'ro', order => 1, isa => Str, format => 's', required => 0, doc => 'Country code. Default is UK.');
option sort_code      => (is => 'ro', order => 2, isa => Str, format => 's', required => 1, doc => 'Sort Code (required).');
option account_number => (is => 'ro', order => 3, isa => Str, format => 's', required => 1, doc => 'Bank Account Number (required).');

=head1 DESCRIPTION

B<FOR INTERNAL USE ONLY>

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 0.759 second using v1.00-cache-2.02-grep-82fe00e-cpan-c98054f2a92 )