Akado-Account
view release on metacpan or search on metacpan
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: 1.4
name: Akado-Account
requires:
Carp: 0
Digest::MD5: 0
HTTP::Request::Common: 0
LWP: 0
XML::XPath: 0
strict: 0
utf8: 0
warnings: 0
resources:
bugtracker: https://github.com/bessarabov/Akado-Account/issues
homepage: https://github.com/bessarabov/Akado-Account
repository: https://github.com/bessarabov/Akado-Account.git
version: 1.2.0
Makefile.PL view on Meta::CPAN
"EXE_FILES" => [],
"LICENSE" => "perl",
"NAME" => "Akado::Account",
"PREREQ_PM" => {
"Carp" => 0,
"Digest::MD5" => 0,
"HTTP::Request::Common" => 0,
"LWP" => 0,
"XML::XPath" => 0,
"strict" => 0,
"utf8" => 0,
"warnings" => 0
},
"TEST_REQUIRES" => {
"Test::More" => 0
},
"VERSION" => "1.2.0",
"test" => {
"TESTS" => "t/*.t"
}
);
my %FallbackPrereqs = (
"Carp" => 0,
"Digest::MD5" => 0,
"HTTP::Request::Common" => 0,
"LWP" => 0,
"Test::More" => 0,
"XML::XPath" => 0,
"strict" => 0,
"utf8" => 0,
"warnings" => 0
);
unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
delete $WriteMakefileArgs{TEST_REQUIRES};
delete $WriteMakefileArgs{BUILD_REQUIRES};
$WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;
}
lib/Akado/Account.pm view on Meta::CPAN
package Akado::Account;
{
$Akado::Account::VERSION = '1.2.0';
}
# ABSTRACT: get internet provider Akado account info
use strict;
use warnings FATAL => 'all';
use utf8;
use Carp;
use Digest::MD5 qw(md5_hex);
use HTTP::Request::Common;
use LWP;
use XML::XPath;
sub new {
my ($class, $self) = @_;
( run in 1.008 second using v1.01-cache-2.11-cpan-49f99fa48dc )