HEX
Server: Apache
System: Linux server-634962.emtiyz.com 5.14.0-611.11.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Dec 3 09:47:37 EST 2025 x86_64
User: codo66ho (1003)
PHP: 8.2.29
Disabled: exec,passthru,shell_exec,system
Upload Files
File: //home/.cpan/build/cPanel-PublicAPI-2.8-0/Makefile.PL
use strict;
use warnings;
use ExtUtils::MakeMaker;

die "OS unsupported\n" if $^O eq 'MSWin32'; # Requires getpwuid to be implemented.

WriteMakefile(
    NAME          => 'cPanel::PublicAPI',
    AUTHOR        => q{cPanel, Inc. <integration@cpanel.net>},
    VERSION_FROM  => 'lib/cPanel/PublicAPI.pm',
    ABSTRACT_FROM => 'lib/cPanel/PublicAPI.pod',
    ( $ExtUtils::MakeMaker::VERSION >= 6.3002
        ? ( 'LICENSE' => 'bsd' )
        : () ),
    PL_FILES  => {},
    PREREQ_PM => {
        'Test::More'       => 0,
        'Test::Exception'  => 0,
        'JSON::XS'         => 2.0,
        'URI::Escape'      => 3,
        'IO::Socket::INET' => 1.31,
        'IO::Socket::SSL'  => 1.988,    # Versions below this do not handle close calls properly
        'HTTP::Tiny'       => 0.042,
        'HTTP::CookieJar'  => 0,
    },
    META_MERGE => {
        'meta-spec' => { version => 2 },
        resources => {
            repository => {
                type => 'git',
                url => 'git://github.com/CpanelInc/cPanel-PublicAPI.git',
                web => 'https://github.com/CpanelInc/cPanel-PublicAPI',
            },
            bugtracker => {
                web => 'https://github.com/CpanelInc/cPanel-PublicAPI/issues',
            },
        },
    },
    dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean => { FILES    => 'cPanel-PublicAPI-*' },
);