CGI-Github-Webhook
view release on metacpan or search on metacpan
"runtime" : {
"requires" : {
"CGI" : "0",
"Data::Dumper" : "0",
"Digest::SHA" : "0",
"File::Basename" : "0",
"File::Copy" : "0",
"File::ShareDir" : "0",
"JSON" : "0",
"Moo" : "0",
"Try::Tiny" : "0",
"perl" : "5.010",
"strict" : "0",
"warnings" : "0"
}
},
"test" : {
"requires" : {
"CGI::Test" : "0",
"CGI::Test::Input::URL" : "0",
"File::Slurper" : "0",
name: CGI-Github-Webhook
requires:
CGI: '0'
Data::Dumper: '0'
Digest::SHA: '0'
File::Basename: '0'
File::Copy: '0'
File::ShareDir: '0'
JSON: '0'
Moo: '0'
Try::Tiny: '0'
perl: '5.010'
strict: '0'
warnings: '0'
resources:
bugtracker: https://github.com/xtaran/CGI-Github-Webhook/issues
homepage: https://github.com/xtaran/CGI-Github-Webhook
repository: https://github.com/xtaran/CGI-Github-Webhook.git
version: '0.06'
Makefile.PL view on Meta::CPAN
"NAME" => "CGI::Github::Webhook",
"PREREQ_PM" => {
"CGI" => 0,
"Data::Dumper" => 0,
"Digest::SHA" => 0,
"File::Basename" => 0,
"File::Copy" => 0,
"File::ShareDir" => 0,
"JSON" => 0,
"Moo" => 0,
"Try::Tiny" => 0,
"strict" => 0,
"warnings" => 0
},
"TEST_REQUIRES" => {
"CGI::Test" => 0,
"CGI::Test::Input::URL" => 0,
"File::Slurper" => 0,
"File::Temp" => 0,
"Test::File" => 0,
"Test::File::ShareDir" => 0,
Makefile.PL view on Meta::CPAN
"File::Basename" => 0,
"File::Copy" => 0,
"File::ShareDir" => 0,
"File::Slurper" => 0,
"File::Temp" => 0,
"JSON" => 0,
"Moo" => 0,
"Test::File" => 0,
"Test::File::ShareDir" => 0,
"Test::More" => 0,
"Try::Tiny" => 0,
"strict" => 0,
"warnings" => 0
);
unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
delete $WriteMakefileArgs{TEST_REQUIRES};
delete $WriteMakefileArgs{BUILD_REQUIRES};
$WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;
}
lib/CGI/Github/Webhook.pm view on Meta::CPAN
use strict;
use warnings;
use 5.010;
our $VERSION = '0.06'; # VERSION
use Moo;
use CGI;
use Data::Dumper;
use JSON;
use Try::Tiny;
use Digest::SHA qw(hmac_sha1_hex);
use File::ShareDir qw(module_dir);
use File::Copy;
use File::Basename;
#=head1 EXPORT
#
#A list of functions that can be exported. You can delete this section
#if you don't export anything, such as for a purely object-oriented module.
( run in 0.802 second using v1.01-cache-2.11-cpan-05444aca049 )