SMS-Send-NANP-Twilio

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

  - Updated Makefile.PL to add meta merge github properties
 
0.05 2018-05-29
  - Note: This version was never pushed to CPAN
  - Updated lib/SMS/Send/NANP/Twilio.pm
    - Moved from username to AccountSid
    - Moved from password to AuthToken
    - Added url override capabiltiy

0.04 2018-03-02
  - Added DateTime as build time requirement - RT 124633 (ANDK@cpan.org)
    - Updated Makefile.PL
    - Updated perl-SMS-Send-NANP-Twilio.spec

0.03 2018-02-03
  - API BREAK
    - Changed sid property to API documented name MessagingServiceSid
    - Changed from property to API documented case From
  - Updated sms_send method
    - Added support for MediaUrl property
  - Added support for all optional properties in API documentation

META.json  view on Meta::CPAN

            "ExtUtils::MakeMaker" : "0"
         }
      },
      "configure" : {
         "requires" : {
            "ExtUtils::MakeMaker" : "0"
         }
      },
      "runtime" : {
         "requires" : {
            "DateTime" : "0",
            "JSON::XS" : "0",
            "SMS::Send::Driver::WebService" : "0.06",
            "URI" : "0"
         }
      }
   },
   "release_status" : "stable",
   "resources" : {
      "bugtracker" : {
         "web" : "https://github.com/mrdvt92/perl-SMS-Send-NANP-Twilio/issues"

META.yml  view on Meta::CPAN

license: unknown
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: '1.4'
name: SMS-Send-NANP-Twilio
no_index:
  directory:
    - t
    - inc
requires:
  DateTime: '0'
  JSON::XS: '0'
  SMS::Send::Driver::WebService: '0.06'
  URI: '0'
resources:
  bugtracker: https://github.com/mrdvt92/perl-SMS-Send-NANP-Twilio/issues
  homepage: https://github.com/mrdvt92/perl-SMS-Send-NANP-Twilio
  repository: https://github.com/mrdvt92/perl-SMS-Send-NANP-Twilio.git
version: '0.06'

Makefile.PL  view on Meta::CPAN

use ExtUtils::MakeMaker;
WriteMakefile(
    NAME           => 'SMS::Send::NANP::Twilio',
    VERSION_FROM   => 'lib/SMS/Send/NANP/Twilio.pm',
    PREREQ_PM      => {
                        'URI'                           => 0,
                        'JSON::XS'                      => 0,
                        'DateTime'                      => 0, #tests
                        'SMS::Send::Driver::WebService' => 0.06,
                      },
    ABSTRACT_FROM  => 'lib/SMS/Send/NANP/Twilio.pm',
    AUTHOR         => 'Michael Davis <mrdvt>',
    'META_MERGE'   => {
                        'resources' => {
                          'repository' => {
                            'web' => 'https://github.com/mrdvt92/perl-SMS-Send-NANP-Twilio.git',
                            'url' => 'git@github.com:mrdvt92/perl-SMS-Send-NANP-Twilio.git',
                            'type' => 'git'

perl-SMS-Send-NANP-Twilio.spec  view on Meta::CPAN

Version:        0.06
Release:        1%{?dist}
Summary:        SMS::Send driver for Twilio
License:        Mit
Group:          Development/Libraries
URL:            http://search.cpan.org/dist/SMS-Send-NANP-Twilio/
Source0:        http://www.cpan.org/modules/by-module/SMS/SMS-Send-NANP-Twilio-%{version}.tar.gz
BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch:      noarch
BuildRequires:  perl(ExtUtils::MakeMaker)
BuildRequires:  perl(DateTime)
BuildRequires:  perl(JSON::XS)
BuildRequires:  perl(SMS::Send)
BuildRequires:  perl(SMS::Send::Driver::WebService) >= 0.06
BuildRequires:  perl(URI)
Requires:       perl(JSON::XS)
Requires:       perl(SMS::Send::Driver::WebService) >= 0.06
Requires:       perl(URI)
Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))

%description

t/002_send.t  view on Meta::CPAN

# -*- perl -*-
use strict;
use warnings;
use DateTime;
use Data::Dumper qw{Dumper};
use Test::More tests => 4;

BEGIN { use_ok( 'SMS::Send::NANP::Twilio' ); }

my $to                  = $ENV{'SMS_TEST_PHONE_NUMBER'};
my $MessagingServiceSid = $ENV{'MessagingServiceSid'};
my $AccountSid          = $ENV{'AccountSid'};
my $AuthToken           = $ENV{'AuthToken'};

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

( run in 0.564 second using v1.00-cache-2.02-grep-82fe00e-cpan-1925d2aa809 )