The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
package Foo;
use Moose;
use namespace::autoclean;

use Catalyst::Runtime 5.80;

use Catalyst;

extends 'Catalyst';

our $VERSION = '0.01';

__PACKAGE__->config(
    name => 'Foo',
    disable_component_resolution_regex_fallback => 1,
);

__PACKAGE__->setup();

1;