Address-PostCode-India
view release on metacpan - search on metacpan
view release on metacpan or search on metacpan
12345678910111213141516171819Revision history
for
Address-PostCode-India
0.13 2019-01-19T21:05:00+01:00
0.12 2019-01-14T16:50:00+01:00
- Added unit test scripts (t/meta-json.t and t/meta-yml.t).
0.11 2019-01-12T06:40:00+01:00
- Used namespace::autoclean instead.
0.10 2019-01-11T12:10:00+01:00
- Added key
'provides'
as suggested by CPANTS.
0.09 2019-01-10T17:00:00+01:00
0.08 2015-03-21T03:25:00+01:00
282930313233343536373839404142434445464748
"configure"
: {
"requires"
: {
"ExtUtils::MakeMaker"
:
"0"
}
},
"runtime"
: {
"requires"
: {
"Address::PostCode::UserAgent"
:
"0.09"
,
"JSON"
:
"0"
,
"Moo"
:
"0"
,
"namespace::autoclean"
:
"0.28"
,
"perl"
:
"5.006"
}
}
},
"provides"
: {
"Address::PostCode::India"
: {
"file"
:
"lib/Address/PostCode/India.pm"
,
"version"
:
"0.13"
},
"Address::PostCode::India::Place"
: {
21222324252627282930313233343536
Address::PostCode::India:
file: lib/Address/PostCode/India.pm
version:
'0.13'
Address::PostCode::India::Place:
file: lib/Address/PostCode/India/Place.pm
version:
'0.13'
requires:
Address::PostCode::UserAgent:
'0.09'
JSON:
'0'
Moo:
'0'
namespace::autoclean:
'0.28'
perl:
'5.006'
resources:
version:
'0.13'
x_serialization_backend:
'CPAN::Meta::YAML version 0.018'
Makefile.PL view on Meta::CPAN
151617181920212223242526272829303132333435MIN_PERL_VERSION
=> 5.006,
CONFIGURE_REQUIRES
=> {
'ExtUtils::MakeMaker'
=> 0,
},
BUILD_REQUIRES
=> {
'Test::More'
=> 0,
},
PREREQ_PM
=> {
'JSON'
=> 0,
'Moo'
=> 0,
'namespace::autoclean'
=>
'0.28'
,
'Address::PostCode::UserAgent'
=>
'0.09'
,
},
dist
=> {
COMPRESS
=>
'gzip -9f'
,
SUFFIX
=>
'gz'
, },
clean
=> {
FILES
=>
'Address-PostCode-India-*'
},
(
eval
{ ExtUtils::MakeMaker->VERSION(6.46) } ? (
META_MERGE
=> {
'meta-spec'
=> {
version
=> 2 },
provides
=> {
'Address::PostCode::India'
=> {
file
=>
'lib/Address/PostCode/India.pm'
,
version
=>
'0.13'
},
'Address::PostCode::India::Place'
=> {
file
=>
'lib/Address/PostCode/India/Place.pm'
,
version
=>
'0.13'
},
},
lib/Address/PostCode/India.pm view on Meta::CPAN
131415161718192021222324252627282930313233=cut
use 5.006;
use JSON;
use Data::Dumper;
use Address::PostCode::UserAgent;
use Address::PostCode::India::Place;
use Moo;
use namespace::autoclean;
extends 'Address::PostCode::UserAgent';
our $BASE_URL = 'http://getpincodes.info/api.php';
=head1 DESCRIPTION
The API service is provided by L<website|http://getpincodes.info/apidetail.php>.
A Postal Index Number or PIN or Pincode is the post office numbering or post code
system used by India Post, the Indian postal administration. The code is 6 digits
lib/Address/PostCode/India/Place.pm view on Meta::CPAN
view all matches for this distribution
1011121314151617181920212223242526272829=head1 VERSION
Version 0.13
=cut
use
5.006;
use
Data::Dumper;
use
Moo;
use
namespace::autoclean;
has
'pincode'
=> (
is
=>
'ro'
);
has
'city'
=> (
is
=>
'ro'
);
has
'district'
=> (
is
=>
'ro'
);
has
'state'
=> (
is
=>
'ro'
);
=head1 METHODS
=head2 pincode()
view release on metacpan - search on metacpan
( run in 0.990 second using v1.00-cache-2.02-grep-82fe00e-cpan-9cd309a53ab )