Codebase list libhttp-async-perl / c30b2b3b-95f9-4a8d-8839-1c6513c49176/main Makefile.PL
c30b2b3b-95f9-4a8d-8839-1c6513c49176/main

Tree @c30b2b3b-95f9-4a8d-8839-1c6513c49176/main (Download .tar.gz)

Makefile.PL @c30b2b3b-95f9-4a8d-8839-1c6513c49176/mainraw · history · blame

use strict;
use warnings;

use ExtUtils::MakeMaker;

WriteMakefile(
    'NAME'         => 'HTTP::Async',
    'VERSION_FROM' => 'lib/HTTP/Async.pm',
    'MIN_PERL_VERSION' => 5.006,
    LICENSE        => 'perl',
    'PREREQ_PM'    => {
        'Carp'                       => 0,
        'Data::Dumper'               => 0,
        'HTTP::Request'              => 0,
        'HTTP::Response'             => 0,
        'HTTP::Server::Simple::CGI'  => 0,
        'HTTP::Status'               => 0,
        'IO::Select'                 => 0,
        'LWP::UserAgent'             => 0,
        'Net::HTTP'                  => 0,
        'Net::HTTP::NB'              => 0,
        'Net::HTTPS::NB'             => 0.13,
        'Test::HTTP::Server::Simple' => 0,
        'Test::More'                 => 0,
        'Test::Fatal'                => 0,
        'Time::HiRes'                => 0,
        'URI'                        => 0,
        'URI::Escape'                => 0,
        'Net::EmptyPort'             => 0,
    },
    META_MERGE    => {
        resources => {
            repository => 'https://github.com/evdb/HTTP-Async',
        },
    },
);