Akamai-Open-Client

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

            "URI" : "0",
            "URL::Encode" : "0",
            "constant" : "0",
            "strict" : "0",
            "warnings" : "0"
         }
      },
      "test" : {
         "requires" : {
            "Cwd" : "0",
            "JSON" : "0",
            "Test::More" : "0",
            "Test::Pod" : "1.41",
            "URI" : "0",
            "perl" : "v5.10.0"
         }
      }
   },
   "release_status" : "stable",
   "resources" : {
      "repository" : {

META.yml  view on Meta::CPAN

---
abstract: 'The Akamai Open API Perl client structure for authentication data'
author:
  - 'Martin Probst <internet+cpan@megamaddin.org>'
build_requires:
  Cwd: 0
  JSON: 0
  Test::More: 0
  Test::Pod: 1.41
  URI: 0
  perl: v5.10.0
configure_requires:
  ExtUtils::MakeMaker: 6.30
dynamic_config: 0
generated_by: 'Dist::Zilla version 5.013, CPAN::Meta::Converter version 2.132510'
license: perl
meta-spec:

Makefile.PL  view on Meta::CPAN

    "MooseX::Singleton" => 0,
    "POSIX" => 0,
    "URI" => 0,
    "URL::Encode" => 0,
    "constant" => 0,
    "strict" => 0,
    "warnings" => 0
  },
  "TEST_REQUIRES" => {
    "Cwd" => 0,
    "JSON" => 0,
    "Test::More" => 0,
    "Test::Pod" => "1.41",
    "URI" => 0
  },
  "VERSION" => "0.03",
  "test" => {
    "TESTS" => "t/*.t"
  }
);


my %FallbackPrereqs = (
  "Cwd" => 0,
  "Data::Dumper" => 0,
  "Data::UUID" => 0,
  "Digest::SHA" => 0,
  "HTTP::Request" => 0,
  "JSON" => 0,
  "LWP::UserAgent" => 0,
  "Log::Log4perl" => 0,
  "MIME::Base64" => 0,
  "Moose" => 0,
  "MooseX::Singleton" => 0,
  "POSIX" => 0,
  "Test::More" => 0,
  "Test::Pod" => "1.41",
  "URI" => 0,
  "URL::Encode" => 0,

dist.ini  view on Meta::CPAN


[Git::NextVersion]
start_version   = 0.01
version_regexp  = Akamai-Open-Client-(.+)$

[Git::Tag]
tag_format      = %N-%v
tag_message     = %N-%v

[AutoPrereqs]
[MetaJSON]
[MetaResources]
repository.url  = https://github.com/MegaMaddin/akamai-open-client-perl
repository.web  = https://github.com/MegaMaddin/akamai-open-client-perl
repository.type = git

[CheckChangeLog]
[Prereqs / TestRequires]
URI             = 0
Test::Pod       = 1.41

t/0007-signedrequest-extended.t  view on Meta::CPAN

    use_ok('Akamai::Open::Request::EdgeGridV1');
    use_ok('Akamai::Open::Client');
    use_ok('URI');
}
require_ok('Akamai::Open::Request::EdgeGridV1');
require_ok('Akamai::Open::Client');
require_ok('URI');


use v5.10;
use JSON;
use Cwd 'abs_path';
use URI;

sub load_testdata {
    my $json_input;
    {
        local ($/, *FH);
        open FH, abs_path($0 .'/../testdata.json') or die "can't open testdata.json";
        $json_input = <FH>;
    }



( run in 1.282 second using v1.01-cache-2.11-cpan-cdf2f3d4e48 )