The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
use inc::Module::Install 0.91;
use strict;

name 'RT-Client-REST';
all_from 'lib/RT/Client/REST.pm';
license 'perl';

requires 'Encode'                => 0;
requires 'Error'                 => 0;
requires 'Exception::Class'      => 0;
requires 'HTTP::Cookies'         => 0;
requires 'HTTP::Request::Common' => 0;
requires 'LWP'                   => 0;
requires 'Params::Validate'      => 0;
requires 'DateTime'              => 0;
requires 'DateTime::Format::DateParse' => 0;
requires 'URI'                   => 0;

test_requires 'Test::More';
test_requires 'Test::Exception'       => 0;

# HTTP::Server::Simple is required for t/83-attachment.t.  We include it
# into the distribution.
test_requires  'HTTP::Server::Simple' => '0.44';
include        'HTTP::Server::Simple';
include        'HTTP::Server::Simple::CGI';
include        'HTTP::Server::Simple::CGI::Environment';

resources repository => 'https://github.com/RT-Client-REST/RT-Client-REST.git';

WriteAll;