CalDAV-Simple
view release on metacpan or search on metacpan
"configure" : {
"requires" : {
"ExtUtils::MakeMaker" : "0"
}
},
"runtime" : {
"requires" : {
"Carp" : "0",
"DateTime" : "0",
"HTTP::Tiny" : "0",
"IO::Socket::SSL" : "0",
"Moo" : "1.006",
"perl" : "5.006",
"strict" : "0",
"warnings" : "0"
}
},
"test" : {
"requires" : {
"Test::More" : "0.88"
}
generated_by: 'Dist::Zilla version 5.032, CPAN::Meta::Converter version 2.150001'
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: '1.4'
name: CalDAV-Simple
requires:
Carp: '0'
DateTime: '0'
HTTP::Tiny: '0'
IO::Socket::SSL: '0'
Moo: '1.006'
perl: '5.006'
strict: '0'
warnings: '0'
resources:
homepage: https://github.com/neilbowers/CalDAV-Simple
repository: https://github.com/neilbowers/CalDAV-Simple.git
version: '0.01'
Makefile.PL view on Meta::CPAN
},
"DISTNAME" => "CalDAV-Simple",
"EXE_FILES" => [],
"LICENSE" => "perl",
"MIN_PERL_VERSION" => "5.006",
"NAME" => "CalDAV::Simple",
"PREREQ_PM" => {
"Carp" => 0,
"DateTime" => 0,
"HTTP::Tiny" => 0,
"IO::Socket::SSL" => 0,
"Moo" => "1.006",
"strict" => 0,
"warnings" => 0
},
"TEST_REQUIRES" => {
"Test::More" => "0.88"
},
"VERSION" => "0.01",
"test" => {
"TESTS" => "t/*.t"
}
);
my %FallbackPrereqs = (
"Carp" => 0,
"DateTime" => 0,
"ExtUtils::MakeMaker" => 0,
"HTTP::Tiny" => 0,
"IO::Socket::SSL" => 0,
"Moo" => "1.006",
"Test::More" => "0.88",
"strict" => 0,
"warnings" => 0
);
unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
delete $WriteMakefileArgs{TEST_REQUIRES};
delete $WriteMakefileArgs{BUILD_REQUIRES};
lib/CalDAV/Simple.pm view on Meta::CPAN
use Moo 1.006;
use Carp qw/ croak /;
use CalDAV::Simple::Task;
our $VERSION = '0.01';
has ua => (
is => 'ro',
default => sub {
require HTTP::Tiny;
require IO::Socket::SSL;
return HTTP::Tiny->new(agent => __PACKAGE__.'/'.$VERSION);
},
);
has calendar => (is => 'ro');
has username => (is => 'ro');
has password => (is => 'ro');
has croak_on_failure => (is => 'ro', default => sub { 1 });
has _url => (is => 'lazy');
( run in 1.118 second using v1.01-cache-2.11-cpan-4d50c553e7e )