App-ValidateSortCode
view release on metacpan - search on metacpan
view release on metacpan or search on metacpan
"configure" : {
"requires" : {
"ExtUtils::MakeMaker" : "0"
}
},
"runtime" : {
"requires" : {
"BankAccount::Validator::UK" : "0.46",
"Moo" : "2.000000",
"MooX::Options" : "4.023",
"namespace::autoclean" : "0.28",
"perl" : "5.006"
}
}
},
"release_status" : "stable",
"resources" : {
"repository" : {
"type" : "git",
"url" : "https://github.com/manwar/App-ValidateSortCode.git",
"web" : "https://github.com/manwar/App-ValidateSortCode"
version: '1.4'
name: App-ValidateSortCode
no_index:
directory:
- t
- inc
requires:
BankAccount::Validator::UK: '0.46'
Moo: '2.000000'
MooX::Options: '4.023'
namespace::autoclean: '0.28'
perl: '5.006'
resources:
repository: https://github.com/manwar/App-ValidateSortCode.git
version: '0.01'
x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
Makefile.PL view on Meta::CPAN
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => 0,
},
BUILD_REQUIRES => {
'Test::More' => 0,
'Capture::Tiny' => '0.28',
},
PREREQ_PM => {
'MooX::Options' => '4.023',
'Moo' => '2.000000',
'namespace::autoclean' => '0.28',
'BankAccount::Validator::UK' => '0.46',
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'App-ValidateSortCode-*' },
(eval { ExtUtils::MakeMaker->VERSION(6.46) } ? (META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'https://github.com/manwar/App-ValidateSortCode.git',
lib/App/ValidateSortCode.pm view on Meta::CPAN
Version 0.01
=cut
use 5.006;
use utf8::all;
use Data::Dumper;
use BankAccount::Validator::UK;
use App::ValidateSortCode::Option;
use Moo;
use namespace::autoclean;
use MooX::Options;
with 'App::ValidateSortCode::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-sort-code> for you to play with.
lib/App/ValidateSortCode/Option.pm view on Meta::CPAN
=head1 VERSION
Version 0.01
=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 distributionview release on metacpan - search on metacpan
( run in 1.128 second using v1.00-cache-2.02-grep-82fe00e-cpan-c98054f2a92 )