API-Handle
view release on metacpan - search on metacpan
view release on metacpan or search on metacpan
"Nour::Config" : "0",
"Nour::Database" : "0",
"Nour::Printer" : "0",
"OX::OAuth" : "0",
"String::CamelCase" : "0",
"Tie::Hash::Indexed" : "0",
"URI" : "0",
"XML::TreePP" : "0",
"bytes" : "0",
"feature" : "0",
"namespace::autoclean" : "0"
}
}
},
"release_status" : "stable",
"resources" : {
"bugtracker" : {
"web" : "https://github.com/quran/api-handle/issues"
},
"repository" : {
"type" : "git",
Nour::Config: 0
Nour::Database: 0
Nour::Printer: 0
OX::OAuth: 0
String::CamelCase: 0
Tie::Hash::Indexed: 0
URI: 0
XML::TreePP: 0
bytes: 0
feature: 0
namespace::autoclean: 0
resources:
bugtracker: https://github.com/quran/api-handle/issues
repository: git://github.com/quran/api-handle.git
version: 0.02
Makefile.PL view on Meta::CPAN
"Nour::Config" => 0,
"Nour::Database" => 0,
"Nour::Printer" => 0,
"OX::OAuth" => 0,
"String::CamelCase" => 0,
"Tie::Hash::Indexed" => 0,
"URI" => 0,
"XML::TreePP" => 0,
"bytes" => 0,
"feature" => 0,
"namespace::autoclean" => 0
},
"VERSION" => "0.02",
"test" => {
"TESTS" => "t/*.t"
}
);
unless ( eval { ExtUtils::MakeMaker->VERSION(6.56) } ) {
my $br = delete $WriteMakefileArgs{BUILD_REQUIRES};
lib/API/Handle.pm view on Meta::CPAN
package API::Handle;
{
$API::Handle::VERSION = '0.02';
}
use Moose::Role;
use namespace::autoclean;
use HTTP::Request;
use bytes;
use feature ':5.10';
use String::CamelCase qw/camelize decamelize/;
use Tie::Hash::Indexed;
has _config => (
is => 'rw'
, isa => 'Nour::Config'
, handles => [ qw/config/ ]
lib/API/Handle/Base.pm view on Meta::CPAN
package API::Handle::Base;
{
$API::Handle::Base::VERSION = '0.02';
}
use Moose;
use namespace::autoclean;
use Carp;
use feature ':5.10';
with 'API::Handle';
# Generic base class.
__PACKAGE__->meta->make_immutable;
1;
lib/API/Handle/Google/DFP.pm view on Meta::CPAN
package API::Handle::Google::DFP;
{
$API::Handle::Google::DFP::VERSION = '0.02';
}
use Moose;
use namespace::autoclean;
use HTTP::Request;
use Carp;
use Data::Dumper;
use feature ':5.10';
with 'API::Handle';
has _config => (
is => 'rw'
, isa => 'Nour::Config'
, handles => {
lib/API/Handle/OpenX.pm view on Meta::CPAN
package API::Handle::OpenX;
{
$API::Handle::OpenX::VERSION = '0.02';
}
use Moose;
use namespace::autoclean;
use Carp;
use feature ':5.10';
use OX::OAuth;
with 'API::Handle';
has _config => (
is => 'rw'
, isa => 'Nour::Config'
, handles => {
config => 'config'
view all matches for this distributionview release on metacpan - search on metacpan
( run in 1.124 second using v1.00-cache-2.02-grep-82fe00e-cpan-c98054f2a92 )