From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
1234567891011121314151617181920 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;
package
Foo;
use
Moose;
namespace::autoclean;
Catalyst::Runtime 5.80;
Catalyst;
extends
'Catalyst'
;
our
$VERSION
=
'0.01'
__PACKAGE__->config(
name
=>
'Foo'
,
disable_component_resolution_regex_fallback
=> 1,
);
__PACKAGE__->setup();
1;