Google-Voice

 view release on metacpan or  search on metacpan

META.yml  view on Meta::CPAN

configure_requires:
  ExtUtils::MakeMaker: 6.30
dynamic_config: 0
generated_by: 'Dist::Zilla version 4.300034, CPAN::Meta::Converter version 2.120921'
license: perl
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: 1.4
name: Google-Voice
requires:
  IO::Socket::SSL: 1.37
  Mojo::Base: 0
  Mojo::ByteStream: 0
  Mojo::JSON: 0
  Mojo::UserAgent: 0
  constant: 0
  strict: 0
  warnings: 0
version: 0.06

Makefile.PL  view on Meta::CPAN

  "AUTHOR" => "Glen Hinkle <tempire\@cpan.org>",
  "BUILD_REQUIRES" => {},
  "CONFIGURE_REQUIRES" => {
    "ExtUtils::MakeMaker" => "6.30"
  },
  "DISTNAME" => "Google-Voice",
  "EXE_FILES" => [],
  "LICENSE" => "perl",
  "NAME" => "Google::Voice",
  "PREREQ_PM" => {
    "IO::Socket::SSL" => "1.37",
    "Mojo::Base" => 0,
    "Mojo::ByteStream" => 0,
    "Mojo::JSON" => 0,
    "Mojo::UserAgent" => 0,
    "constant" => 0,
    "strict" => 0,
    "warnings" => 0
  },
  "TEST_REQUIRES" => {
    "Test::Mojo" => 0,

README.md  view on Meta::CPAN

# Google Voice library for Perl

 - No parsing required - all data available in perl objects
 - Only two pre-requisites:
    - Mojolicious
    - IO::Socket::SSL


## Install

curl -L cpanmin.us | perl - Google::Voice

<a href="https://metacpan.org/module/Google::Voice">https://metacpan.org/module/Google::Voice</a>

## Example

lib/Google/Voice.pm  view on Meta::CPAN

package Google::Voice;

use strict;
use warnings;

use Mojo::UserAgent;
use Mojo::JSON;
use IO::Socket::SSL 1.37;

use Google::Voice::Feed;
use Google::Voice::Call;

use Mojo::Base -base;

our $VERSION = 0.06;

__PACKAGE__->attr([qw/ ua rnr_se /]);



( run in 0.252 second using v1.01-cache-2.11-cpan-2b0bae70ee8 )