Business-YQL

 view release on metacpan or  search on metacpan

META.yml  view on Meta::CPAN

  ExtUtils::MakeMaker: 6.30
dynamic_config: 0
generated_by: 'Dist::Zilla version 5.009, CPAN::Meta::Converter version 2.133380'
license: perl
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: 1.4
name: Business-YQL
requires:
  Carp: 0
  HTTP::Request::Common: 0
  JSON: 0
  LWP::UserAgent: 0
  List::Util: 1.35
  Log::Any: 0.15
  Log::Any::Adapter: 0.11
  Moo: 1.004002
  Try::Tiny: 0
  URI: 0
  URI::QueryParam: 0
version: 0.0004

Makefile.PL  view on Meta::CPAN

  "BUILD_REQUIRES" => {},
  "CONFIGURE_REQUIRES" => {
    "ExtUtils::MakeMaker" => "6.30"
  },
  "DISTNAME" => "Business-YQL",
  "EXE_FILES" => [],
  "LICENSE" => "perl",
  "NAME" => "Business::YQL",
  "PREREQ_PM" => {
    "Carp" => 0,
    "HTTP::Request::Common" => 0,
    "JSON" => 0,
    "LWP::UserAgent" => 0,
    "List::Util" => "1.35",
    "Log::Any" => "0.15",
    "Log::Any::Adapter" => "0.11",
    "Moo" => "1.004002",
    "Try::Tiny" => 0,
    "URI" => 0,
    "URI::QueryParam" => 0
  },

Makefile.PL  view on Meta::CPAN

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


my %FallbackPrereqs = (
  "Carp" => 0,
  "File::Spec" => 0,
  "HTTP::Request::Common" => 0,
  "IO::Handle" => 0,
  "IPC::Open3" => 0,
  "JSON" => 0,
  "LWP::UserAgent" => 0,
  "List::Util" => "1.35",
  "Log::Any" => "0.15",
  "Log::Any::Adapter" => "0.11",
  "Log::Dispatch" => 0,
  "Moo" => "1.004002",
  "Test::More" => 0,

lib/Business/YQL.pm  view on Meta::CPAN

package Business::YQL;
use Moo;

our $VERSION = '0.0004'; # VERSION

use HTTP::Request::Common qw(GET POST);
use URI;
use URI::QueryParam;
use LWP::UserAgent;
use JSON qw(to_json from_json);
use Carp qw(croak);
use Log::Any qw($log);
use Try::Tiny;

has scheme  => (is => 'ro', default => 'http'                           );
has domain  => (is => 'ro', default => 'query.yahooapis.com'            );



( run in 0.535 second using v1.01-cache-2.11-cpan-de7293f3b23 )