The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package TestApp1;

use strict;
use warnings;

use MRO::Compat;

use Catalyst qw/ConfigLoader/;

our $VERSION = '0.01';

__PACKAGE__->setup;

sub finalize_config {
    my $c = shift;
    $c->config( foo => 'bar1' );
    $c->next::method( @_ );
}

1;