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

# Define metadata
name            'Test-DBIx-Class-Schema';
all_from        'lib/Test/DBIx/Class/Schema.pm';

# Specific dependencies
requires        'Test::More'        => '0.92';
build_requires  'Test::More'        => '0.92';
build_requires  'FindBin'           => 0;   # core since 5.00307

auto_install;
WriteAll;