ComXo-Call2

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

            "Test::More" : "0.88",
            "Test::Pod" : "1.41",
            "Test::Pod::Coverage" : "1.08",
            "Test::Pod::LinkCheck" : "0",
            "Test::Synopsis" : "0",
            "Test::Version" : "1"
         }
      },
      "runtime" : {
         "requires" : {
            "IO::Socket::SSL" : "0",
            "SOAP::Lite" : "0",
            "perl" : "5.014000"
         }
      },
      "test" : {
         "recommends" : {
            "CPAN::Meta" : "2.120900"
         },
         "requires" : {
            "ExtUtils::MakeMaker" : "0",

META.yml  view on Meta::CPAN

configure_requires:
  ExtUtils::MakeMaker: '6.48'
dynamic_config: 0
generated_by: 'Dist::Zilla version 6.007, CPAN::Meta::Converter version 2.143240'
license: perl
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: '1.4'
name: ComXo-Call2
requires:
  IO::Socket::SSL: '0'
  SOAP::Lite: '0'
  perl: '5.014000'
resources:
  bugtracker: https://github.com/binary-com/perl-ComXo-Call2/issues
  repository: git://github.com/binary-com/perl-ComXo-Call2.git
version: '0.02'
x_serialization_backend: 'YAML::Tiny version 1.66'

Makefile.PL  view on Meta::CPAN

  "ABSTRACT" => "API for the ComXo Call2 service (www.call2.com)",
  "AUTHOR" => "binary.com <BINARY\@cpan.org>",
  "CONFIGURE_REQUIRES" => {
    "ExtUtils::MakeMaker" => "6.48"
  },
  "DISTNAME" => "ComXo-Call2",
  "LICENSE" => "perl",
  "MIN_PERL_VERSION" => "5.014000",
  "NAME" => "ComXo::Call2",
  "PREREQ_PM" => {
    "IO::Socket::SSL" => 0,
    "SOAP::Lite" => 0
  },
  "TEST_REQUIRES" => {
    "ExtUtils::MakeMaker" => 0,
    "File::Spec" => 0,
    "IO::Handle" => 0,
    "IPC::Open3" => 0,
    "Test::CheckDeps" => "0.010",
    "Test::More" => "0.96"
  },

Makefile.PL  view on Meta::CPAN

  "test" => {
    "TESTS" => "t/*.t"
  }
);


my %FallbackPrereqs = (
  "ExtUtils::MakeMaker" => 0,
  "File::Spec" => 0,
  "IO::Handle" => 0,
  "IO::Socket::SSL" => 0,
  "IPC::Open3" => 0,
  "SOAP::Lite" => 0,
  "Test::CheckDeps" => "0.010",
  "Test::More" => "0.96"
);


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

cpanfile  view on Meta::CPAN

requires 'perl', '5.008005';

requires 'SOAP::Lite';
requires 'IO::Socket::SSL';

on test => sub {
    requires 'Test::More', '0.96';
};

lib/ComXo/Call2.pm  view on Meta::CPAN

package ComXo::Call2;

use strict;
use warnings;
our $VERSION = '0.02';

use Carp;
use SOAP::Lite;
use IO::Socket::SSL qw( SSL_VERIFY_NONE );

my %possible_err = (
    '*01' => 'Number Failed',
    '*02' => 'Alias Does Not Exist',
    '*03' => 'No Call Records',
    '*04' => 'Account details incorrect',
    '*05' => 'Not enough credit on account',
    '*06' => 'ID not recognised',
    '*07' => 'Possible Fraud Attempt',
);

t/00-report-prereqs.dd  view on Meta::CPAN

                                      'Test::More' => '0.88',
                                      'Test::Pod' => '1.41',
                                      'Test::Pod::Coverage' => '1.08',
                                      'Test::Pod::LinkCheck' => '0',
                                      'Test::Synopsis' => '0',
                                      'Test::Version' => '1'
                                    }
                    },
       'runtime' => {
                      'requires' => {
                                      'IO::Socket::SSL' => '0',
                                      'SOAP::Lite' => '0',
                                      'perl' => '5.014000'
                                    }
                    },
       'test' => {
                   'recommends' => {
                                     'CPAN::Meta' => '2.120900'
                                   },
                   'requires' => {
                                   'ExtUtils::MakeMaker' => '0',



( run in 0.524 second using v1.01-cache-2.11-cpan-4d50c553e7e )